2009-07-11 02:34:59 +02:00
|
|
|
/* Blink without Delay
|
2013-10-21 09:58:40 +02:00
|
|
|
|
2015-01-28 23:11:51 +01:00
|
|
|
Turns on and off a light emitting diode (LED) connected to a digital
|
2009-07-11 02:34:59 +02:00
|
|
|
pin, without using the delay() function. This means that other code
|
|
|
|
can run at the same time without being interrupted by the LED code.
|
2013-10-21 09:58:40 +02:00
|
|
|
|
2010-02-09 04:48:57 +01:00
|
|
|
The circuit:
|
2009-07-11 02:34:59 +02:00
|
|
|
* LED attached from pin 13 to ground.
|
|
|
|
* Note: on most Arduinos, there is already an LED on the board
|
|
|
|
that's attached to pin 13, so no hardware is needed for this example.
|
|
|
|
|
|
|
|
created 2005
|
|
|
|
by David A. Mellis
|
2010-02-09 04:48:57 +01:00
|
|
|
modified 8 Feb 2010
|
|
|
|
by Paul Stoffregen
|
2013-11-11 13:31:25 +01:00
|
|
|
modified 11 Nov 2013
|
|
|
|
by Scott Fitzgerald
|
|
|
|
|
2009-07-11 02:34:59 +02:00
|
|
|
|
2010-02-24 04:18:02 +01:00
|
|
|
This example code is in the public domain.
|
|
|
|
|
2009-07-11 02:34:59 +02:00
|
|
|
http://www.arduino.cc/en/Tutorial/BlinkWithoutDelay
|
|
|
|
*/
|
|
|
|
|
2013-11-11 13:31:25 +01:00
|
|
|
// constants won't change. Used here to set a pin number :
|
2009-07-11 02:34:59 +02:00
|
|
|
const int ledPin = 13; // the number of the LED pin
|
|
|
|
|
2013-11-11 13:31:25 +01: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
|
|
|
|
|
|
|
|
// constants won't change :
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
void loop()
|
|
|
|
{
|
|
|
|
// 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();
|
|
|
|
|
2013-11-11 13:31:25 +01:00
|
|
|
if(currentMillis - previousMillis >= interval) {
|
2009-07-11 02:34:59 +02:00
|
|
|
// save the last time you blinked the LED
|
2010-02-09 04:48:57 +01:00
|
|
|
previousMillis = currentMillis;
|
2009-07-11 02:34:59 +02:00
|
|
|
|
|
|
|
// if the LED is off turn it on and vice-versa:
|
|
|
|
if (ledState == LOW)
|
|
|
|
ledState = HIGH;
|
|
|
|
else
|
|
|
|
ledState = LOW;
|
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
|
|
|
}
|
|
|
|
|