[CANBus]
説明
Function to read data from the CAN FIFO buffer.
構文
CAN.read()
媒介変数
None
戻り値
When there are data in the FIFO buffer, return 1 byte of data.
When there is no data in the FIFO, return -1.
例
#include <CANBus.h> unsigned char ch; void setup() { Serial.begin(115200); CAN.begin(CAN_500KBPS); } void loop() { if (CAN.requestFrom() > 0) // Check to see whether data is received. { while (CAN.available() > 0) // Check to see whether there are data in the FIFO { ch = CAN.read(); // Read data from FIFO Serial.print(ch); // Output data value Serial.print("\t"); } Serial.println(); } }
See also
Libraries Reference Home
86Duino のリファレンスのテキストは Arduino レファレンス を編集したもので、 Creative Commons Attribution-ShareAlike 3.0 License下でライセンスされています。リファレンス内のコードサンプルはパブリックドメインとして公開されています。