-
Notifications
You must be signed in to change notification settings - Fork 333
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #267 from julio-matarranz/feat/c3-devices
feat : add support to c3 devices (mini ai-c3 and c3 super mini, 24khs) and refactor rgb led devices
- Loading branch information
Showing
8 changed files
with
99 additions
and
42 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
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#ifndef _ESP32_RGB_H | ||
#define _ESP32_RGB_H | ||
|
||
#ifndef PIN_BUTTON_1 | ||
#define PIN_BUTTON_1 0 | ||
#endif | ||
|
||
#ifndef RGB_LED_PIN | ||
#define RGB_LED_PIN 48 | ||
#endif | ||
|
||
#ifndef RGB_LED_CLASS | ||
#define RGB_LED_CLASS WS2812B | ||
#endif | ||
|
||
#ifndef RGB_LED_ORDER | ||
#define RGB_LED_ORDER BGR | ||
#endif | ||
|
||
|
||
#define LED_DISPLAY | ||
#define USE_LED | ||
|
||
#endif |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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