-
Notifications
You must be signed in to change notification settings - Fork 8
/
platformio.ini
66 lines (61 loc) · 1.74 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
; 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]
src_dir = SigKSens
[env:d1_mini]
platform = espressif8266
board = d1_mini
framework = arduino
monitor_speed = 115200
board_build.f_cpu = 160000000L
upload_resetmethod = nodemcu
build_flags = -Wl,-Teagle.flash.4m1m.ld
upload_speed = 230400
lib_deps =
ReactESP
ESP8266WiFi
ESP8266mDNS
mxtommy/uSSDP
DNSServer
https://github.com/tzapu/WiFiManager#bbe984c93b71601aad9f50f765ba9a255478bff3
ESP8266WebServer
ArduinoJson
WebSockets
ESPAsyncTCP
ESP Async WebServer
Adafruit ADS1X15
Adafruit Unified Sensor
Adafruit BMP280 Library
OneWire
DallasTemperature
[env:esp32]
platform = https://github.com/platformio/platform-espressif32.git#feature/stage
framework = arduino
board = lolin32
monitor_speed = 115200
board_build.extra_flags = -DARDUINO_ESP32_DEV -DBOARD_HAS_PSRAM -mfix-esp32-psram-cache-issue
board_upload.flash_size = 16MB
board_upload.maximum_size = 16777216
board_build.partitions = default_16MB.csv
lib_deps =
ReactESP
https://github.com/tzapu/WiFiManager#bbe984c93b71601aad9f50f765ba9a255478bff3
ESPmDNS
marian-craciunescu/uSSDP-ESP32
ArduinoJson
WebSockets
me-no-dev/AsyncTCP#idf-update
me-no-dev/ESPAsyncWebServer
Adafruit ADS1X15
Adafruit Unified Sensor
Adafruit BMP280 Library
OneWire
DallasTemperature
;AsyncTCP needs fix for IDF https://github.com/me-no-dev/AsyncTCP/issues/19