-
Notifications
You must be signed in to change notification settings - Fork 29
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
Showing
22 changed files
with
495 additions
and
478 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 |
---|---|---|
|
@@ -41,7 +41,7 @@ jobs: | |
|
||
- config-name: esp8266-v3 | ||
platform-url: https://arduino.esp8266.com/stable/package_esp8266com_index.json | ||
arduino-platform: esp8266:esp8266@3.0.2 | ||
arduino-platform: esp8266:esp8266@3.1.2 | ||
arduino-boards-fqbn: esp8266:esp8266:d1_mini | ||
|
||
- config-name: esp32-v1 | ||
|
@@ -51,7 +51,7 @@ jobs: | |
|
||
- config-name: esp32-v2 | ||
platform-url: https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json | ||
arduino-platform: esp32:[email protected].4 | ||
arduino-platform: esp32:[email protected].14 | ||
arduino-boards-fqbn: esp32:esp32:esp32 | ||
|
||
- config-name: arduino-uno | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "Dimmable Light for Arduino", | ||
"version": "1.5.0", | ||
"version": "1.5.1", | ||
"authors": { | ||
"name": "Fabiano Riccardi", | ||
"email": "[email protected]" | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name=Dimmable Light for Arduino | ||
version=1.5.0 | ||
version=1.5.1 | ||
author=Fabiano Riccardi <[email protected]> | ||
maintainer=Fabiano Riccardi <[email protected]> | ||
sentence=This library allows to easily control dimmers (also known as thyristors). | ||
|
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
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 |
---|---|---|
@@ -1,22 +1,22 @@ | ||
/*************************************************************************** | ||
* This file is part of Dimmable Light for Arduino, a library to * | ||
* control dimmers. * | ||
* * | ||
* Copyright (C) 2018-2022 Fabiano Riccardi * | ||
* * | ||
* Dimmable Light for Arduino is free software; you can redistribute * | ||
* it and/or modify it under the terms of the GNU Lesser General Public * | ||
* License as published by the Free Software Foundation; either * | ||
* version 2.1 of the License, or (at your option) any later version. * | ||
* * | ||
* This library is distributed in the hope that it will be useful, * | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of * | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * | ||
* Lesser General Public License for more details. * | ||
* * | ||
* You should have received a copy of the GNU General Public License * | ||
* along with this program; if not, see <http://www.gnu.org/licenses/> * | ||
***************************************************************************/ | ||
/****************************************************************************** | ||
* This file is part of Dimmable Light for Arduino, a library to control * | ||
* dimmers. * | ||
* * | ||
* Copyright (C) 2018-2023 Fabiano Riccardi * | ||
* * | ||
* Dimmable Light for Arduino is free software; you can redistribute * | ||
* it and/or modify it under the terms of the GNU Lesser General Public * | ||
* License as published by the Free Software Foundation; either * | ||
* version 2.1 of the License, or (at your option) any later version. * | ||
* * | ||
* This library is distributed in the hope that it will be useful, * | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of * | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * | ||
* Lesser General Public License for more details. * | ||
* * | ||
* You should have received a copy of the GNU Lesser General Public License * | ||
* along with this library; if not, see <http://www.gnu.org/licenses/>. * | ||
******************************************************************************/ | ||
#include "dimmable_light.h" | ||
|
||
uint8_t DimmableLight::nLights = 0; |
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
Oops, something went wrong.