21.01.2022, 14:52
Yes, just create new sheet, name it and use in the custom_value field. You can add as many you want.
------------------------------
Ctrl+F5
Ctrl+F5
Modbus profile generator
|
21.01.2022, 14:52
Yes, just create new sheet, name it and use in the custom_value field. You can add as many you want.
------------------------------
Ctrl+F5
30.03.2022, 16:37
Nice work thank !
Just a precision for others, I used office 13 and doesn't work. I upgrade to 2016 and perfect working !
-----------
FRANCE SMARTHOME & SMARTBUILDING INTEGRATION SE ECO EXPERT
22.06.2022, 06:40
I created a profile with modbus profile generator,but I'm not sure that i did it correctly would you guys check it for me please ?
Code: {
22.06.2022, 07:29
The datatype and bus_datatype for your registers are uint16. For Coil you can delete datatype.
Use Read test tool to check it if all is correct. It is possible that you will have to shift registers by 1 as we starting to count from 0.
------------------------------
Ctrl+F5
22.06.2022, 08:07
Also writable value should be true without quotes otherwise newer firmware won't accept the profile. Addressing starts with 0 and for mode/speed registers you can use 1 byte (uint8) data type.
Code: {
30.06.2022, 10:28
Attach your profile file. Seems like a copy/paste error.
30.06.2022, 10:58
Try the attached profile. Copied profile had different space characters which are not allowed. Also there were some errors in the profile definition.
03.10.2023, 12:16
HI I HAVE AN ISSUE WITH PROFILE GENRATOR WHEN I TRY TO GENERATE JSON FILE I GET ERROR
'9'. please how can i solve it.
03.10.2023, 12:21
(03.10.2023, 12:16)mellotron Wrote: HI I HAVE AN ISSUE WITH PROFILE GENRATOR WHEN I TRY TO GENERATE JSON FILE I GET ERROR value_custom must be null if empty
------------------------------
Ctrl+F5
03.10.2023, 12:34
(03.10.2023, 12:21)Daniel Wrote:(03.10.2023, 12:16)mellotron Wrote: Bonjour, j'ai un problème avec le générateur de profil lorsque j'essaye de générer un fichier JSON, j'obtiens l'erreur je have fill the empty custom value but get the same issue
03.10.2023, 14:05
I just set all your custom_value to null and it worked, you probably did some typo in name.
------------------------------
Ctrl+F5
22.06.2025, 13:25
Hi,
I’m trying to write the configuration for the following Modbus device but haven’t been able to get it right, so I’d appreciate your help. When each register holds an 8-bit value and two registers together form a 16-bit integer, how should I define it? Register addresses (hex) ![]() • 0x1C: Temperature (Low Byte):1 byte • 0x1D: Temperature (High Byte): 1 byte –15.0 °C to 90.0 °C (raw values 0xFF6A to 0x0384) My failed Configration : [ { "bus_datatype": "int16", "datatype": "int16", "address": 28, "read_count": 2, "units": "°C", "type": "register", "value_multiplier": 0.1, "name": "Temperature" } ] Thank you for reading.
23.06.2025, 08:46
One register is 16bit value already, just specify datatype correctly. Do not use read_count unless you do a block read.
LM will automatically decide how many registers to read based on the datatype definition but for int16 it is just one register. See this, much better than this old solution https://forum.logicmachine.net/showthread.php?tid=5911
------------------------------
Ctrl+F5 |
« Next Oldest | Next Newest »
|