Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cmmakerclub/cmmc_led
An easy to use and control LED library for Arduino framework.
https://github.com/cmmakerclub/cmmc_led
arduino arduino-library esp8266
Last synced: 28 days ago
JSON representation
An easy to use and control LED library for Arduino framework.
- Host: GitHub
- URL: https://github.com/cmmakerclub/cmmc_led
- Owner: cmmakerclub
- License: mit
- Created: 2017-10-17T06:50:11.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-15T08:37:14.000Z (over 6 years ago)
- Last Synced: 2024-11-17T08:18:06.652Z (3 months ago)
- Topics: arduino, arduino-library, esp8266
- Language: C++
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 4
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CMMC LED Library
*An easy to use and control LED library for Arduino framework.*
CMMC_LED is designed for controller library that you can wrap pin number and pin state to the object
Features
--------
* Set default led state when create led object
* `toggle()` LED state
* `set()` LED state
* easy control `low()` and `high()` method
* MIT LicenseUsage
--------Initializing:
CMMC_LED led(2, LOW);
led.init();
Controlling:
led.low();
led.high();Toggle:
led.toggle()