ModbusMasterNode.send()

[Modbus]

描述

Set the quotes to the private array writeData in the ModbusMasterNode class and stack the data automatically with beginTransmission and writeMultipleRegisters without parameters.

writeData is the contents of a Modbus packet using the Write function code.

語法

node1.send(value)

參數

  • node1: ModbusMasterNode object.
  • value: Fill in the writeData array with the value of the Modbus packet content to be sent, either uint8_t, uint16_t or uint32_t.

範例

#include <Arduino.h>
#include <Modbus86.h>
 
ModbusMaster bus1;
ModbusMasterNode node2;
 
uint8_t reg[2];
uint8_t result;
 
void setup()
{
    while(!Serial);
    bus1.begin(MODBUS_RTU,Serial1);
    node2.attach(16, bus1); 
 
    reg[0] = 0x1234;
    reg[1] = 0xabcd;
    node2.beginTransmission(5);
    node2.send(reg[0]);
    node2.send(reg[1]);
    result = node2.writeMultipleRegisters();
 
    if (result != MODBUS_SUCCESS) {
        Serial.print("ErrorCode: ");
        Serial.println(result);
    }
}
 
void loop() {}

也可以看看


函式庫參考主頁面

86Duino 參考的文本是根據 Creative Commons Attribution-ShareAlike 3.0 License,部分文本是從 the Arduino reference 修改的。 參考中的代碼示例已發佈到公共領域。

發表評論

上部へスクロール