Skip to content
/ Blink Public

blink digital output in arduino

License

Notifications You must be signed in to change notification settings

brakdag/Blink

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Blink library for Arduino.

Hi, this arduino code aggregate allows you to control LED outputs that light up more easily, choosing the times and multiple on and off frequencies.


Getting Started

To start using the library you should open the example code simpleblink or alternatively you can create a document and paste de follow code.

#include <blink.h>

// Initialize variable: led(<PIN>,<TIME milliseconds>);
Blink led(13,1000);

void setup() {
  //nothing
}

void loop() {
led.Update(); // Updates state of the output led.
}