Hi, I'm using the Arduino UNO Rev3 and I have some questions about sending multiple chars.
I understand that the Arduino UNO reads multiple chars one by one (Example: send 7B, it will read as '7' and 'B')
Correct me if I'm wrong about that.
How do you receive multiple chars at once if my desired char is 7B which is 5566 once converted to decimal?
Because right now if i put Person == 5566, the arduino will just read 55, how do I make it able to read 66 as well?
if (Person == ??) { //unsure about this line
digitalWrite(Activate1, HIGH);
delay(300);
Serial.print("Activate1 = 1");
}
Much appreciated for any help, thanks! I am a newbie at programming so spare me the cane.