-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
51 lines (46 loc) · 1.37 KB
/
platformio.ini
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
48
49
50
51
;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]
extra_configs = lib/esp-iot-base/platformio.ini
[env:esp12e]
platform = [email protected]
board = esp12e
framework = arduino
upload_speed = 460800
monitor_speed = 74880
monitor_filters = esp8266_exception_decoder, default
upload_protocol = espota
upload_port = thermostat.iot.home
upload_flags = --auth="${sysenv.PIO_ESP_THERMOSTAT_AUTH}"
build_flags =
${iot.build_flags}
${iot.release_flags}
; ${iot.extra_release_flags}
; -Wall
-DIOT_ENABLE_PERSISTENCE
-DIOT_PERSISTENCE_EERAM_47L16
-DIOT_ENABLE_SYSTEM_CLOCK
-DIOT_SYSTEM_CLOCK_HW_RTC
; -DIOT_ENABLE_BLYNK
; -DIOT_BLYNK_USE_SSL
-DIOT_ENABLE_MQTT
-DIOT_ENABLE_MQTT_EXTRA_LARGE_BUFFER
; -DIOT_ENABLE_PERIODIC_HTTP_UPDATE_CHECK
; -DBLYNK_SSL_USE_LETSENCRYPT
; -DIOT_BLYNK_SSL_CUSTOM_FINGERPRINT
; -DDEBUG_ESP_PORT=Serial
; -DDEBUG_BLYNK_KEYPAD
; -DBLYNK_PRINT=Serial
; -DBLYNK_DEBUG_ALL
; -DDEBUG_ESP_SSL
; -DDEBUG_ESP_HTTP_SERVER
; -DDEBUG_ESP_WIFI
lib_deps =
${iot.lib_deps}