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