Last active
December 19, 2017 04:49
-
-
Save RyoKosaka/56f2b5d222f5c331b57e53553799b539 to your computer and use it in GitHub Desktop.
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
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