-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathplatformio.ini
More file actions
executable file
·47 lines (43 loc) · 896 Bytes
/
platformio.ini
File metadata and controls
executable file
·47 lines (43 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[env]
framework = arduino
upload_speed = 921600
lib_deps =
earlephilhower/ESP8266Audio @ ^1.9.3
[env:esp8266-audio-c]
platform = espressif8266
board = esp12e
monitor_speed = 74880
build_flags =
-D PIN_I2S_EN=0
-D SERIAL_BAUD=74880
[env:esp32-audio-c]
platform = espressif32
board = esp32dev
monitor_speed = 115200
build_flags =
-D PIN_I2S_EN=23
-D SERIAL_BAUD=115200
lib_deps =
SPIFFS
HttpClient
WiFiClientSecure
earlephilhower/ESP8266Audio @ ^1.9.3
[env:esp8266-audio-d]
platform = espressif8266
board = esp12e
; upload_port = /dev/ttyUSB0
; monitor_port = /dev/ttyUSB0
monitor_speed = 74880
build_flags =
-D SERIAL_BAUD=74880
[env:esp32-audio-d]
platform = espressif32
board = esp32dev
monitor_speed = 115200
build_flags =
-D SERIAL_BAUD=115200
lib_deps =
SPIFFS
HttpClient
WiFiClientSecure
earlephilhower/ESP8266Audio @ ^1.9.3