-
-
Notifications
You must be signed in to change notification settings - Fork 13
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 #74 from tobozo/1.4.1
1.4.1
- Loading branch information
Showing
26 changed files
with
1,535 additions
and
163 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 |
---|---|---|
|
@@ -32,6 +32,7 @@ jobs: | |
- m5stack-core2 | ||
- odroid_esp32 | ||
- esp32wroverkit | ||
- esp32s3box | ||
- d32_pro | ||
- twatch | ||
- ttgo-t1 | ||
|
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
#include <ESP32-Chimera-Core.h> | ||
|
||
#if defined HAS_SDCARD | ||
#define USE_SDUPDATER | ||
#endif | ||
|
||
|
||
#define SDU_APP_NAME "ESP32-S3-Box Test" // app title for the sd-updater lobby screen | ||
#define SDU_APP_PATH "/S3BoxTest.bin" // app binary file name on the SD Card (also displayed on the sd-updater lobby screen) | ||
#define SDU_APP_AUTHOR "@tobozo" // app binary author name for the sd-updater lobby screen | ||
#if defined USE_SDUPDATER | ||
#include <M5StackUpdater.h> // https://github.com/tobozo/M5Stack-SD-Updater (get it from your library manager) | ||
#endif | ||
|
||
|
||
|
||
void setup() | ||
{ | ||
|
||
M5.begin(); | ||
|
||
checkSDUpdater( SD, MENU_BIN, 15000, TFCARD_CS_PIN ); | ||
|
||
} | ||
|
||
void loop() | ||
{ | ||
/* | ||
if( digitalRead( GPIO_NUM_1 ) != lastbtnstate ) { | ||
lastbtnstate = 1-lastbtnstate; | ||
log_d("btnstate: %d", lastbtnstate ); | ||
}*/ | ||
//BtnMute->read(); | ||
//if( BtnMute->wasPressed() ) log_e("BtnMute"); | ||
|
||
//M5.update(); | ||
//if( M5.BtnA.wasPressed() ) log_e("BtnA"); | ||
// if( M5.BtnB.wasPressed() ) log_e("BtnB"); | ||
// if( M5.BtnC.wasPressed() ) log_e("BtnC"); | ||
|
||
//delay(100); | ||
|
||
} |
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
Oops, something went wrong.