ArduinoModbusSlave icon indicating copy to clipboard operation
ArduinoModbusSlave copied to clipboard

Modbus slave library for Arduino

Results 28 ArduinoModbusSlave issues
Sort by recently updated
recently updated
newest added

Hi, i have following example on a atmega 4808 running and try with my linux usb-ftdi rs485 to read the registers. include #define SLAVE_ID 33 // The Modbus slave ID,...

Hello! I have a code working for Nano, but I rewrite it for Pro Micro (Leonardo based) and it is not working for this platform. Suggestions?

Hi there, I wonder that can I use this library on ESP32 module? Have you ever tried that? Regards. Erkan

help wanted
question

Can i use this library for RP2040 or Raspberry pi pico?

help wanted
question

#include #include SoftwareSerial RS485Serial(10, 11); // RX, TX Modbus slave(RS485Serial, 1, 2); int led = 12; int dl_ro = 2; void setup() { pinMode(dl_ro, OUTPUT); pinMode(led, OUTPUT); slave.cbVector[CB_WRITE_COILS] = writeDigitalOut;...

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...

How can I read the data at 40001. how should i edit the code please help me

help wanted
question

I'm looking for a Modbus RTU slave implementation for a Blue Pill and would be interested if there's any user feedback on using this lib with STM32F1XX devices. Thanks!

help wanted
question

Hi guys, what i would like to do is change the SLAVE_ID during the void setup. This because i would like to set the slave address with 5 dip switch....

help wanted
question
request