Hello everyone,
Can I send words trough serial . like when I send the word "go" the arduino receives "go" and do whatever its programed to do.
I obviously cant use
int val = Serial.read ();
So i need someting like
text val = Serial.read (); // i dont know how to switch the int with a text input
//and
if (val == go){
do something
}