Hello Team!
I’ve developed a small supervision system for my generator using node red nodes. On the system, in order to reset an alarm, I’ll have to send two values ( 35707 and 29828) to two separate registers ( 4104 and 4105) simultaneously. I’ve tried this using the FC 16 function but no positive result.
Here below is the code
value: 35707,
'fc': 16,
'unitid': 1,
'address': 4104 ,
'quantity': 1
}, {
value: 29828,
'fc': 16,
'unitid': 1,
'address': 4105 ,
'quantity': 1
}]``
This returns an error code ''Wrong FC used''.
I think it has to do with the FC 16 I've used.
But, how do I get around this. Please any help will be highly appreciated.