yaacov / ArduinoModbusSlave

Modbus slave library for Arduino
ISC License
205 stars 75 forks source link

using a modbus master simulator software with this library #81

Open mushfiq-heraclius-xen opened 2 years ago

mushfiq-heraclius-xen commented 2 years ago

can any body tell me which modbus simulator software is better to use with this library , i have used "Simply Modbus Master " simulator and tried writing/reading data to register number 40001 , didn't get any response or anything

ysmilda commented 2 years ago

What kind of program where you running for this test?

mushfiq-heraclius-xen commented 2 years ago

https://www.simplymodbus.ca/RTUmaster.htm

ysmilda commented 2 years ago

I meant the program on the microcontroller, sorry for the confusion.

mushfiq-heraclius-xen commented 2 years ago

https://github.com/yaacov/ArduinoModbusSlave/tree/master/examples/simple

ysmilda commented 2 years ago

The way that example is set up it isn't possible to read anything at register 40001. You'd have better luck when reading registers 0,1,2 with fc 4. This reads out the set analog input values.

This library can adhere to the standard offsets, but doesn't do so in the examples. This ability to use any registry makes it quite flexible.

mushfiq-heraclius-xen commented 2 years ago

ok thank you! but can you tell me what values i have to write for fc=05 or 15 to make output pins HIGH ??

mushfiq-heraclius-xen commented 2 years ago

Force Single Coil (FC=05) and Force Multiple Coils (FC=15) and set the corresponding digital output pins (coils).

mushfiq-heraclius-xen commented 2 years ago

what values i have to write from the modbus rtu master simulator software for fc=05 or 15 to make output pins HIGH ??

ysmilda commented 2 years ago

I was mistaken, for reading the analog sensors FC04 should be used.

When writing a 1 to register 0 to 3 when using FC05 the digital outputs should be set to high.

paxsipornax commented 2 years ago

readRegister = slave.readCoilFromBuffer(40001) How can I write a code like I want to read the data in plc 40001 register but failed