You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
300 B
Plaintext
20 lines
300 B
Plaintext
14 years ago
|
/*
|
||
|
DigitalReadSerial
|
||
|
Reads a digital input on pin 2, prints the result to the serial monitor
|
||
|
|
||
|
This example code is in the public domain.
|
||
|
*/
|
||
15 years ago
|
|
||
|
void setup() {
|
||
|
Serial.begin(9600);
|
||
|
pinMode(2, INPUT);
|
||
|
}
|
||
|
|
||
|
void loop() {
|
||
|
int sensorValue = digitalRead(2);
|
||
|
Serial.println(sensorValue, DEC);
|
||
|
}
|
||
|
|
||
|
|
||
|
|