Modbusino
介绍
Modbusino是ISC许可的库,用于在Arduino(从属)上处理Modbus请求。
特征
为了简化操作并减少内存消耗,仅支持以下两个Modbus功能:
读取保持寄存器(0x03)
写入多个寄存器(0x10)
例子
# include
/* Initialize the slave with the ID 1 */
ModbusinoSlave modbusino_slave ( 1 );
/* Allocate a mapping of 10 values */
uint16_t tab_reg[ 10 ];
void setup () {
/* The transfer speed is set to 115200 bauds */
modbusino_slave. setup ( 115200 );
}
2021-07-12 22:10:57
6KB
C++
1