文件名称:modbusino:小型Modbus从站,用于Arduino的RTU(串行)
文件大小:6KB
文件格式:ZIP
更新时间:2024-06-12 22:08:53
C++
Modbusino 介绍 Modbusino是ISC许可的库,用于在Arduino(从属)上处理Modbus请求。 特征 为了简化操作并减少内存消耗,仅支持以下两个Modbus功能: 读取保持寄存器(0x03) 写入多个寄存器(0x10) 例子 # include < Modbusino> /* 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 ); }
【文件预览】:
modbusino-master
----.clang-format(576B)
----Modbusino.cpp(9KB)
----LICENSE(742B)
----examples()
--------hello_modbusino()
----README.md(1KB)
----Modbusino.h(867B)