document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. void setup() {
  2. Serial.begin(9600);
  3. }
  4.  
  5. void loop() {
  6. int sensorValue = analogRead(A0);
  7. Serial.println(sensorValue);
  8. delay(1);
  9. }
');