Giter VIP home page Giter VIP logo

arduino-semaphore's Introduction

arduino-semaphore

Basic semaphore library for arduino

Instalation

Copy the Semaphore directory inside of the libraries sub-directory of your sketchbook directory. Now launch the Arduino environment. If you open the Sketch > Import Library menu, you should see Semaphore inside. The library will be compiled with sketches that use it. If the library doesn't seem to build, make sure that the files really end in .cpp and .h (with no extra .pde or .txt extension, for example).

Quick reference

/* Include the library in your code */

#include <Semaphore.h>

/*
  Declare your semaphore:
    * pin 10: red led
    * pin 11: yellow led
    * pin 12: gren led 
*/

Semaphore my_semaphore(10,11,12);

void setup(){
  /* no setup is needed */
}

void loop(){

  /* switch on red ligth */
  my_semaphore.red();
  delay(3000);

  /* switch on yellow ligth */
  my_semaphore.yellow();
  delay(3000);

  /* switch on green ligth */
  my_semaphore.green();
  delay(3000);

  /* switch on red and yellow ligth togheter */
  my_semaphore.red_yellow();
  delay(3000);

  /* turn off all ligth */
  my_semaphore.off();
}

Author

Angel Arancibia

License

This library is released under the GPL v3.

arduino-semaphore's People

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.