Skip to content

Instantly share code, notes, and snippets.

@RyoKosaka
Last active December 19, 2017 04:49
Show Gist options
  • Save RyoKosaka/56f2b5d222f5c331b57e53553799b539 to your computer and use it in GitHub Desktop.
Save RyoKosaka/56f2b5d222f5c331b57e53553799b539 to your computer and use it in GitHub Desktop.
void setup() {
Serial.begin(38400);
}
void loop() {
int sensorValue = analogRead(A0);
int sensorValue1 = analogRead(A1);
Serial.print(sensorValue);
Serial.print(",");
Serial.println(sensorValue1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment