Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Explanation #23

Open
FSHK opened this issue Nov 7, 2018 · 1 comment
Open

Explanation #23

FSHK opened this issue Nov 7, 2018 · 1 comment

Comments

@FSHK
Copy link

FSHK commented Nov 7, 2018

Hi im new into this world of pinguino and i would appreciate if someone could explain me how exactly the library works i get the milis_init initialize the millis the millis() return the value of millis the interrupt increase the millis by 1 but the update dont get the idea of it,the only thing i need to do is replace the delay(ms) using only the millis library :( could someone explain this to me please T.T?

@rblanchot
Copy link
Member

Hi,
Here is how we use the millis library to blink a LED every 1000ms. I hope it helps.

const int ledPin =  USERLED;      // the number of the LED pin

// Variables will change:
int ledState = LOW;             // ledState used to set the LED
long previousMillis = 0;        // will store last time LED was updated

// the follow variables is a long because the time, measured in miliseconds,
// will quickly become a bigger number than can be stored in an int.
long interval = 1000;           // interval at which to blink (milliseconds)

void setup()
{
  // set the digital pin as output:
  pinMode(ledPin, OUTPUT);      
}

void loop()
{
  // 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 
  // blink the LED.
  unsigned long currentMillis = millis();
 
  if(currentMillis - previousMillis > interval)
  {
    // save the last time you blinked the LED 
    previousMillis = currentMillis;   

    // if the LED is off turn it on and vice-versa:
    if (ledState == LOW)
      ledState = HIGH;
    else
      ledState = LOW;

    // set the LED with the ledState of the variable:
    digitalWrite(ledPin, ledState);
  }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants