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