Problem with .json profiles - Printable Version +- Logic Machine Forum (https://forum.logicmachine.net) +-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1) +--- Forum: Gateway (https://forum.logicmachine.net/forumdisplay.php?fid=10) +--- Thread: Problem with .json profiles (/showthread.php?tid=494) |
Problem with .json profiles - Mirco - 07.12.2016 Hi, I use the modbus tool to reading registers from a fire detection central, but I found some problems. All registers that I mapped in the .json profile are like this: {"name":"Reg 01", "bus_datatype": "uint8", "datatype": "uint16", "type": "register", "address": 400, "writable":"false"}, I read without problems, but when I change the value of the group address linked with one of the register, the value is written via modbus. It is a big problem.. Do you know why this is happening? Thanks RE: Problem with .json profiles - admin - 07.12.2016 Remove double quotes from false, otherwise it is evaluated as true. RE: Problem with .json profiles - Mirco - 12.12.2016 Thank you! |