Advertisement
Guest User

Pentionemeter Activity

a guest
Mar 29th, 2020
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. void setup() {
  2. // put your setup code here, to run once:
  3. Serial.begin(9600);
  4. }
  5.  
  6. void loop() {
  7. // put your main code here, to run repeatedly:
  8. int sensorValue = analogRead(A0);
  9. Serial.println(sensorValue);
  10. delay(10);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement