Last active
December 2, 2016 03:39
Arduino Serial Sample
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Here's a quick sample of how my Serial code worked. Sadly my Mac stopped responding, so I lost my actual code | |
*/ | |
void loop() { | |
// If there is anything in the serial buffer from the Pi, handle it | |
if (Serial.available()) { | |
byte value = Serial.read() | |
// If the byte retrieved is a '1' | |
if ((char) value == '1') { | |
// Send current data | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment