Answers for "arduino serial read write structure"

C
1

arduino serial read write structure

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));
}
Posted by: Guest on August-16-2021

Code answers related to "C"

Browse Popular Code Answers by Language