document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. int lettura=0;
  2.  
  3. void setup() {
  4. Serial.begin(9600);
  5. pinMode(A0,INPUT);
  6. }
  7.  
  8. void loop() {
  9. lettura= analogRead(A0);
  10. Serial.println(lettura);
  11.  
  12. delay(1000);
  13.  
  14. }
');