24.01.2023, 11:35
LM firmware 2023 RC2: https://forum.logicmachine.net/showthread.php?tid=4572
LM firmware 2023 RC1 is ready for testing.
Changes from 2022 RC1:
BACnet client via scripting can now execute read/write requests in parallel if the target device IP address is set explicitly (bacnet.deviceip). Requires genohm-scada-bacnet_20230120 from extra packages to be installed. BACnet server can also be used together with client scripts in this case.
LM firmware 2023 RC1 is ready for testing.
Changes from 2022 RC1:
- Default send delta for Modbus is now set to 0.2 to prevent overloading LM with duplicate or very similar values.
- Fixed iOS issue with dropped connection to the visualization that happens when device go to sleep.
- Minor bug fixes and documentation updates.
BACnet client via scripting can now execute read/write requests in parallel if the target device IP address is set explicitly (bacnet.deviceip). Requires genohm-scada-bacnet_20230120 from extra packages to be installed. BACnet server can also be used together with client scripts in this case.
Code:
require('bacnet')
-- read from 192.168.0.21, device ID 21
bacnet.deviceip = '192.168.0.21'
val1 = bacnet.readvalue(21, 'binary value', 2049)
val2 = bacnet.readvalue(21, 'binary value', 2050)
val3 = bacnet.readvalue(21, 'binary value', 2051)
log(val1, val2, val3)