Added sleep mode for VS1053, HTTP server, tar upload, JSON status, RFID card removal debouncing, ...
This commit is contained in:
@ -21,6 +21,12 @@
|
||||
#define TX 1
|
||||
|
||||
#define SHOW_DEBUG
|
||||
//#define SHOW_TRACE
|
||||
|
||||
#define WIFI_SSID "Schlenz"
|
||||
#define WIFI_PASS "1410WischlingenPanda"
|
||||
|
||||
#define VS1053_SLEEP_DELAY 5000
|
||||
|
||||
|
||||
#define PIN_SD_CS D4
|
||||
@ -56,3 +62,9 @@
|
||||
#else
|
||||
#define DEBUG(x, ...) while(0) {}
|
||||
#endif
|
||||
|
||||
#ifdef SHOW_TRACE
|
||||
#define TRACE(x, ...) Serial.printf(x, ##__VA_ARGS__)
|
||||
#else
|
||||
#define TRACE(x, ...) while(0) {}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user