1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
|
// Define a variable to hold the switch state |
int input_state = 0; |
  |
void setup() { |
  pinMode(3, OUTPUT);  // This is where the LED is connected |
  pinMode(9, INPUT); // This is where the switch is vonnected |
} |
  |
void loop() { |
  input_state = digitalRead(9); |
  digitalWrite(3, input_state); |
} |
|