I found a logical AND error in the constructor of the Modbusino.cpp file and caused a compilation warning. ```c ModbusinoSlave::ModbusinoSlave(uint8_t slave) { if (slave >= 0 && slave <= 247) { _slave = slave; } } ```
I found a logical AND error in the constructor of the Modbusino.cpp file and caused a compilation warning.