-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4699eef
commit 80b76c9
Showing
3 changed files
with
12 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,15 +5,15 @@ | |
"name": "Fabiano Riccardi", | ||
"email": "[email protected]" | ||
}, | ||
"description": "This library allows you to command electrical appliances through dimmer (also known as thyristor)", | ||
"description": "This library allows to easily control dimmers (also known as thyristors).", | ||
"keywords": [ | ||
"dimmer", | ||
"triac", | ||
"thyristor", | ||
"timer", | ||
"light", | ||
"arduino-library", | ||
"Phase-fired control" | ||
"phase-fired control" | ||
], | ||
"repository": { | ||
"type": "git", | ||
|
@@ -29,13 +29,15 @@ | |
"atmelavr", | ||
"atmelsam" | ||
], | ||
"dependencies":[ | ||
"dependencies": [ | ||
{ | ||
"owner": "mike-matera", | ||
"name": "ArduinoSTL", | ||
"version": "^1.3.3", | ||
"platforms": ["atmelavr"] | ||
} | ||
"platforms": [ | ||
"atmelavr" | ||
] | ||
} | ||
], | ||
"examples": [ | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ name=Dimmable Light for Arduino | |
version=1.4.0 | ||
author=Fabiano Riccardi <[email protected]> | ||
maintainer=Fabiano Riccardi <[email protected]> | ||
sentence=This library allows you to command electrical appliances through dimmer (also known as thyristor) | ||
paragraph=This library was born to control dimmable light bulbs, but actually Thryristor class is fully reusable for other AC loads like electrical heaters. Actually it works on ESP8266, ESP32 and AVR. | ||
sentence=This library allows to easily control dimmers (also known as thyristors). | ||
paragraph=This library was born to control dimmable light bulbs, but actually dimmers are fully compatible with other AC loads like electrical heaters and motors (be aware of what you are doing!). Actually it works on ESP8266, ESP32, AVR and SAMD. | ||
category=Device Control | ||
url=https://github.com/fabianoriccardi/dimmable-light | ||
architectures=esp8266,esp32,avr,samd | ||
|