Skip to content

Instantly share code, notes, and snippets.

@jpliew
Created April 22, 2020 03:08
Show Gist options
  • Save jpliew/81eee8d0c2daeaee5f5fd266df198c18 to your computer and use it in GitHub Desktop.
Save jpliew/81eee8d0c2daeaee5f5fd266df198c18 to your computer and use it in GitHub Desktop.
Tutorial 6 - 1C
// constants won't change. They're used here to set pin numbers:
const int buttonPin = 2; // the number of the pushbutton pin
const int ledPin = 13; // the number of the LED pin
long prevTime =0;
// variables will change:
int buttonState = 0; // variable for reading the pushbutton status
void setup() {
// initialize the LED pin as an output:
pinMode(ledPin, OUTPUT);
// initialize the pushbutton pin as an input:
pinMode(buttonPin, INPUT);
pinMode(3, OUTPUT);
}
void loop() {
// read the state of the pushbutton value:
buttonState = digitalRead(buttonPin);
// check if the pushbutton is pressed. If it is, the buttonState is HIGH:
if (buttonState == HIGH) {
// turn LED on:
digitalWrite(ledPin, HIGH);
if ((millis()-prevTime)>1000) {
digitalWrite(3, HIGH);
}
} else {
// turn LED off:
digitalWrite(ledPin, LOW);
digitalWrite(3, LOW);
prevTime=millis();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment