Skip to content

Instantly share code, notes, and snippets.

@taesamja
Created June 30, 2016 23:52
Show Gist options
  • Save taesamja/a850721529fbdbbacd3fc157a5569d19 to your computer and use it in GitHub Desktop.
Save taesamja/a850721529fbdbbacd3fc157a5569d19 to your computer and use it in GitHub Desktop.
const int ledPin = 13;
char indata;
void setup() {
Serial.begin(9600);
pinMode(ledPin, OUTPUT);
}
void loop() {
if(Serial.available()) {
indata = Serial.read();
if(indata== 'H') {
digitalWrite(ledPin, HIGH);
}
if(indata== 'L') {
digitalWrite(ledPin, LOW);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment