-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* change sketch * change sketch * add audio libs * auto change settings * extend flash size * change version number * update libraries * remove AsyncElegantOTA * change partition * separate configs for OTA and COM upload; update libraries * fix missing external libraries on build * stop autoplay of stream; add TODOs * add API endpoints for player * fix typing * add documentation for player API * remove unused columns * create settings-file if not exists * update wiring of audio interface * remove unused include * switch to ESP32-audioI2S library
- Loading branch information
1 parent
3589279
commit 5907c1b
Showing
6 changed files
with
186 additions
and
48 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
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -8,36 +8,36 @@ | |
; Please visit documentation for the other options and examples | ||
; https://docs.platformio.org/page/projectconf.html | ||
|
||
[env:esp32doit-devkit-v1] | ||
[platformio] | ||
default_envs = esp32_com | ||
|
||
[env] | ||
platform = [email protected] | ||
board = esp32doit-devkit-v1 | ||
framework = arduino | ||
|
||
board_build.partitions = min_spiffs.csv | ||
monitor_speed = 115200 | ||
monitor_filters = esp32_exception_decoder | ||
|
||
upload_speed = 921600 | ||
upload_port = COM3 # /dev/ttyUSB0 | ||
#upload_port = 192.168.178.83 | ||
#upload_protocol = espota | ||
#upload_flags = | ||
# --auth=waaatering | ||
lib_deps = | ||
juerd/ESP-WiFiSettings @ ~3.8.0 | ||
teckel12/NewPing @ ^1.9.6 | ||
ottowinter/ESPAsyncWebServer-esphome @ ^3.0.0 | ||
bblanchon/StreamUtils @ ^1.7.0 | ||
adafruit/Adafruit SSD1306 @ ^2.5.7 | ||
adafruit/Adafruit GFX Library @ ^1.11.5 | ||
adafruit/DHT sensor library @ ^1.4.3 | ||
adafruit/Adafruit Unified Sensor @ ^1.1.7 | ||
https://github.com/schreibfaul1/ESP32-audioI2S.git#3.0.0 | ||
bblanchon/ArduinoJson@^6.20.1 | ||
|
||
#build_type = debug | ||
#build_flags = -DCORE_DEBUG_LEVEL=5 # verbose | ||
|
||
lib_deps = | ||
juerd/ESP-WiFiSettings @ ~3.8.0 | ||
teckel12/NewPing @ ^1.9.4 | ||
ottowinter/ESPAsyncWebServer-esphome @ ^3.0.0 | ||
ayushsharma82/AsyncElegantOTA @ ^2.2.7 | ||
bblanchon/ArduinoJson @ ^6.19.4 | ||
bblanchon/StreamUtils @ ^1.6.3 | ||
|
||
#SSD1306 | ||
adafruit/Adafruit SSD1306 @ ^2.5.7 | ||
adafruit/Adafruit GFX Library @ ^1.11.3 | ||
[env:esp32_com] | ||
upload_speed = 921600 | ||
upload_port = COM3 | ||
|
||
# DHT22 | ||
adafruit/DHT sensor library @ ^1.4.3 | ||
adafruit/Adafruit Unified Sensor @ ^1.1.5 | ||
[env:esp32_ota] | ||
upload_port = 192.168.178.83 | ||
upload_protocol = espota | ||
upload_flags = | ||
--auth=waaatering |
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