forked from foxis/ESPWeather
-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
68 lines (62 loc) · 1.35 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
; 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
; http://docs.platformio.org/page/projectconf.html
[platformio]
env_default = oled
[common]
lib_deps =
901
ArduinoJson@5.13.4
PubSubClient
ESPAsyncTCP
ESP Async WebServer
[env:headless]
monitor_baud = 74880
upload_speed = 921600
framework = arduino
platform = espressif8266
board = d1_mini
build_flags = -D ESP_WEATHER_VARIANT_HEADLESS
lib_deps =
${common.lib_deps}
[env:oled]
monitor_baud = 74880
upload_speed = 921600
framework = arduino
platform = espressif8266
board = d1_mini
build_flags = -D ESP_WEATHER_VARIANT_OLED
lib_deps =
${common.lib_deps}
ESP8266_SSD1306
[env:epd]
monitor_baud = 74880
upload_speed = 921600
framework = arduino
platform = espressif8266
board = d1_mini
build_flags = -D ESP_WEATHER_VARIANT_EPAPER
lib_deps =
${common.lib_deps}
Adafruit GFX Library
GxEPD
[env:pro]
monitor_baud = 74880
upload_speed = 921600
framework = arduino
platform = espressif8266
board = d1_mini
build_flags = -D ESP_WEATHER_VARIANT_PRO
lib_deps =
${common.lib_deps}
ESP8266_SSD1306
OneWire
Adafruit SI1145 Library
DallasTemperature
RTClib