-
Notifications
You must be signed in to change notification settings - Fork 65
/
platformio.ini
58 lines (51 loc) · 1.82 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
; 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]
src_dir = ESP8266WirelessPrintAsync
# common variables shared by the environments
[env]
framework = arduino
lib_deps =
https://github.com/greiman/SdFat#3b79f38
https://github.com/me-no-dev/ESPAsyncTCP#7e9ed22
https://github.com/me-no-dev/ESPAsyncWebServer#95dedf7
https://github.com/ayushsharma82/AsyncElegantOTA#4b3528c
https://github.com/alanswx/ESPAsyncWiFiManager#1c02154
https://github.com/bblanchon/ArduinoJson#3df4efd
https://github.com/Makuna/NeoPixelBus#9619fef
build_flags = -DLOG_LOCAL_LEVEL=ESP_LOG_NONE
# base environments
# can be extended by board-specific environments
[base:esp8266]
; corresponds to https://github.com/platformio/platform-espressif8266/releases/tag/v2.0.0
; see https://github.com/esp8266/Arduino/releases/tag/2.5.0
platform = [email protected]
framework = ${env.framework}
lib_deps = ${env.lib_deps}
lib_ignore = AsyncTCP
[base:esp32]
; corresponds to https://github.com/platformio/platform-espressif32/releases/tag/v1.8.0
; see https://github.com/espressif/arduino-esp32/releases/tag/1.0.2
platform = [email protected]
framework = ${env.framework}
lib_deps =
${env.lib_deps}
https://github.com/bbx10/Hash_tng
[env:nodemcuv2]
board = nodemcuv2
extends = base:esp8266
[env:d1_mini]
board = d1_mini
extends = base:esp8266
# esp32dev works for the majority of ESP32 based dev boards
# there are more specific board configurations available, feel free to send PRs adding new ones
[env:esp32dev]
board = esp32dev
extends = base:esp32