Hi guys,
I need some guidance here. So basically my LM4 system crashed weeks ago, and I didn't do any backup. Now in the newly built system, I got all of the objects back except 4 floow heating thermal controller, those are Modbus RTU 485 controllers, I guess they need to be mapped to KNX address?
Can someone please guide me how to do that? or any help will be much appreciated.
Check LM manual. You need to configure the serial port correctly and you need a device profile that describes Modbus registers and respective data types. Then these registers are mapped to LM objects.
15.12.2025, 10:20 (This post was last modified: 16.12.2025, 15:21 by sunhailun.)
(15.12.2025, 07:43)admin Wrote: Check LM manual. You need to configure the serial port correctly and you need a device profile that describes Modbus registers and respective data types. Then these registers are mapped to LM objects.
The problem is that I do not have the manual nor specs for the thermal controller, so I tried different varibles in RTU settings, and then run RTU scan, no luck so far. Can't find nothing there.
Did I configure the setting right?
The controller looks like this btw.
Anyone has any idea why RTU scan show no result?
I tried baud rate 9600, parity none 1stop bit, half duplex, scan from 1 all the way to 247, nothing.
This thermostat was a relative cheap chinese made, PCB reads: ETOP-HT-0506-MDV1.1, which was made by company E-TOP, they are known for making OEM products.
And for this model, the common specs are using 9600-8-N-1.
What could be the problem here?
(16.12.2025, 15:21)Daniel Wrote: RTU scan will not show anything unless you have valid profile created for this device.
I manually created the two attached profile, but no luck finding the device yet.
Can you check and see if there is anything wrong in the script?
It's a relatively simple floor heating Thermostat. The pain point here is it's an OEM and couldn't find the official profile.
To create a profile you need device documentation from the manufacture where you will find registry table definition. Otherwise you are completely blind.
Yesterday, 13:26 (This post was last modified: Yesterday, 13:27 by sunhailun.)
(Yesterday, 08:10)admin Wrote: Disable RTU1 in Modbus settings, then run this script. It will run for a couple of minutes and will log any found devices.
for i = 1, 247 do
mb:setslave(i)
res, err = mb:readregisters(0)
if res ~= nil then
log('found device', i, res)
end
end
mb:close()
I ran the script, but come back with nothing.
(Yesterday, 08:35)Daniel Wrote: To create a profile you need device documentation from the manufacture where you will find registry table definition. Otherwise you are completely blind.
I managed to locate a document from the manufactory (attached) and then generated the profile base on the info.
Can you check and see if I did it right? Thanks
It is probably in hex, slave 11, 12, 13, 14. Disable the script from admin, set the RTU mode as per this document and use Read test under modbus tab
Device address 11, holding register and try different addresses: 2, 3, 40002, 40003.
see what happens.
Yesterday, 13:59 (This post was last modified: Yesterday, 14:00 by sunhailun.)
(Yesterday, 13:46)Daniel Wrote: It is probably in hex, slave 11, 12, 13, 14. Disable the script from admin, set the RTU mode as per this document and use Read test under modbus tab
Device address 11, holding register and try different addresses: 2, 3, 40002, 40003.
see what happens.
Thanks for your prompt response
I tried but no luck. Does that mean the RS485 ports are damaged?