2009-07-11 02:34:59 +02:00
|
|
|
/* Blink without Delay
|
2013-10-21 09:58:40 +02:00
|
|
|
|
2017-07-15 00:30:34 +02:00
|
|
|
Turns on and off a light emitting diode (LED) connected to a digital
|
|
|
|
pin, without using the delay() function. This means that other code
|
|
|
|
can run at the same time without being interrupted by the LED code.
|
|
|
|
|
|
|
|
The circuit:
|
|
|
|
- Use the onboard LED.
|
2017-07-15 00:35:58 +02:00
|
|
|
- Note: Most Arduinos have an on-board LED you can control. On the UNO, MEGA and ZERO
|
2017-07-15 00:30:34 +02:00
|
|
|
it is attached to digital pin 13, on MKR1000 on pin 6. LED_BUILTIN is set to
|
|
|
|
the correct LED pin independent of which board is used.
|
|
|
|
If you want to know what pin the on-board LED is connected to on your Arduino model, check
|
|
|
|
the Technical Specs of your board at https://www.arduino.cc/en/Main/Products
|
|
|
|
|
|
|
|
created 2005
|
|
|
|
by David A. Mellis
|
|
|
|
modified 8 Feb 2010
|
|
|
|
by Paul Stoffregen
|
|
|
|
modified 11 Nov 2013
|
|
|
|
by Scott Fitzgerald
|
|
|
|
modified 9 Jan 2017
|
|
|
|
by Arturo Guadalupi
|
|
|
|
|
|
|
|
|
|
|
|
This example code is in the public domain.
|
|
|
|
|
|
|
|
http://www.arduino.cc/en/Tutorial/BlinkWithoutDelay
|
2017-07-15 00:35:58 +02:00
|
|
|
*/
|
2009-07-11 02:34:59 +02:00
|
|
|
|
2017-07-12 19:58:31 +02:00
|
|
|
// constants won't change. Used here to set a pin number:
|
2017-01-09 11:45:45 +01:00
|
|
|
const int ledPin = LED_BUILTIN;// the number of the LED pin
|
2009-07-11 02:34:59 +02:00
|
|
|
|
2017-07-12 19:58:31 +02:00
|
|
|
// Variables will change:
|
2009-07-11 02:34:59 +02:00
|
|
|
int ledState = LOW; // ledState used to set the LED
|
|
|
|
|
2015-01-28 23:11:51 +01:00
|
|
|
// Generally, you should use "unsigned long" for variables that hold time
|
2013-11-11 13:31:25 +01:00
|
|
|
// The value will quickly become too large for an int to store
|
|
|
|
unsigned long previousMillis = 0; // will store last time LED was updated
|
|
|
|
|
2017-07-12 19:58:31 +02:00
|
|
|
// constants won't change:
|
2013-11-11 13:31:25 +01:00
|
|
|
const long interval = 1000; // interval at which to blink (milliseconds)
|
2009-07-11 02:34:59 +02:00
|
|
|
|
|
|
|
void setup() {
|
|
|
|
// set the digital pin as output:
|
2013-10-21 09:58:40 +02:00
|
|
|
pinMode(ledPin, OUTPUT);
|
2009-07-11 02:34:59 +02:00
|
|
|
}
|
|
|
|
|
2015-07-06 15:18:33 +02:00
|
|
|
void loop() {
|
2009-07-11 02:34:59 +02:00
|
|
|
// here is where you'd put code that needs to be running all the time.
|
|
|
|
|
2013-10-21 09:58:40 +02:00
|
|
|
// check to see if it's time to blink the LED; that is, if the
|
|
|
|
// difference between the current time and last time you blinked
|
|
|
|
// the LED is bigger than the interval at which you want to
|
2010-02-09 04:51:55 +01:00
|
|
|
// blink the LED.
|
2010-02-09 04:48:57 +01:00
|
|
|
unsigned long currentMillis = millis();
|
2015-07-06 15:18:33 +02:00
|
|
|
|
|
|
|
if (currentMillis - previousMillis >= interval) {
|
|
|
|
// save the last time you blinked the LED
|
|
|
|
previousMillis = currentMillis;
|
2009-07-11 02:34:59 +02:00
|
|
|
|
|
|
|
// if the LED is off turn it on and vice-versa:
|
2015-07-06 15:18:33 +02:00
|
|
|
if (ledState == LOW) {
|
2009-07-11 02:34:59 +02:00
|
|
|
ledState = HIGH;
|
2015-07-06 15:18:33 +02:00
|
|
|
} else {
|
2009-07-11 02:34:59 +02:00
|
|
|
ledState = LOW;
|
2015-07-06 15:18:33 +02:00
|
|
|
}
|
2010-02-09 04:48:57 +01:00
|
|
|
|
2009-07-11 02:34:59 +02:00
|
|
|
// set the LED with the ledState of the variable:
|
|
|
|
digitalWrite(ledPin, ledState);
|
|
|
|
}
|
2010-02-09 04:48:57 +01:00
|
|
|
}
|