blob: 59c2ffe5a3273676fa58be0942e5b250f202fa35 (
plain)
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
|
;PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
[platformio]
default_envs = d1_mini
[env]
platform = espressif8266
framework = arduino
monitor_speed = 115200
upload_speed = 115200
;lib_deps = WiFiManager, PubSubClient, Bounce2, HttpClient, ESP8266Audio
lib_ldf_mode = deep
[env:d1_mini]
board = d1_mini
; set frequency to 160MHz
board_build.f_cpu = 160000000L
|