📜  arduino串口读写结构——C编程语言代码示例

📅  最后修改于: 2022-03-11 15:04:35.535000             🧑  作者: Mango

代码示例1
void send (const structTable* table)
{
    Serial.write((const char*)table, sizeof(structTable));  // 2 bytes.
}

bool receive(structTable* table)
{
    return (Serial.readBytes((char*)table, sizeof(structTable)) == sizeof(structTable));
}