21.06.2021, 06:42
You can set the export field via a DB query:
Check if you have the latest firmware because there was a bug when the BACnet service stopped working after a certain number of reload calls.
Code:
db:update('objects', { export = 1 }, { id = 1 })
db:update('objects', { export = 1 }, { id = 2 })
db:update('objects', { export = 0 }, { id = 3 })
db:update('objects', { export = 1 }, { id = 4 })
script.reloadbacnet()
Check if you have the latest firmware because there was a bug when the BACnet service stopped working after a certain number of reload calls.