Belimo UK24MOD - Printable Version +- Logic Machine Forum (https://forum.logicmachine.net) +-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1) +--- Forum: Scripting (https://forum.logicmachine.net/forumdisplay.php?fid=8) +--- Thread: Belimo UK24MOD (/showthread.php?tid=2993) |
Belimo UK24MOD - benthoma - 18.11.2020 Hi, have someone integrated uk24mod on LM5 ? What does the script look like to extract the different values of knx? I need to itegratedĀ 3 on each LM5. https://www.belimo.eu/CH/EN/Product/FireSmoke/ProductDetail.cfm?MatNr=UK24MOD&CatNr=&TopCatNr= RE: Belimo UK24MOD - admin - 18.11.2020 You don't need a script but a modbus profile. Which registers do you want to access apart from setpoint? RE: Belimo UK24MOD - Andey - 18.11.2020 Here is a sampleĀ code after quick view on reference manual. Just to help you find a right way. Code: require('luamodbus') And my question to LM gurus: what will happens if there are device listed in 'ModBus' table located on the same RS485 bus. I assume that connection parameters are the same and there is no address conflict. RE: Belimo UK24MOD - admin - 18.11.2020 You should use a profile. If you want to use scripts and mapper on the same port then you need to use modbus proxy. See this for more info: https://forum.logicmachine.net/showthread.php?tid=387&pid=1953#pid1953 RE: Belimo UK24MOD - benthoma - 18.11.2020 (18.11.2020, 12:24)admin Wrote: You don't need a script but a modbus profile. Which registers do you want to access apart from setpoint? OK, I want access all. Is there a easy way to make modbus profile? RE: Belimo UK24MOD - Daniel - 18.11.2020 Here is profile documentation: https://openrb.com/docs/modbus.htm Here are different examples: https://forum.logicmachine.net/showthread.php?tid=839 It is good practice to use RTU read test to check all parameters before creating the profile. |