sources and files for the bombatuino project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
191 B

  1. void setup() {
  2. Serial.begin(9600);
  3. }
  4. void loop() {
  5. int val = analogRead(5);
  6. Serial.println(val);
  7. delay(100); // we have to make a delay to avoid overloading the serial port
  8. }