-
Notifications
You must be signed in to change notification settings - Fork 94
/
platformio.ini
52 lines (44 loc) · 932 Bytes
/
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
; InfluxDB Arduino Client
;
[platformio]
src_dir = ./test/
[env]
framework = arduino
upload_speed = 1500000
monitor_speed = 115200
monitor_filters = time
lib_ignore = WiFiNINA
build_flags =
-D CORE_DEBUG_LEVEL=0
lib_extra_dirs =
../
[esp32_common]
platform = espressif32
board = esp32dev
framework = ${env.framework}
upload_speed = ${env.upload_speed}
monitor_speed = ${env.monitor_speed}
lib_ignore = ${env.lib_ignore}
lib_extra_dirs = ${env.lib_extra_dirs}
lib_deps =
WiFi
HTTPClient
build_flags =
${env.build_flags}
[esp8266_common]
platform = espressif8266
framework = ${env.framework}
board = esp12e
monitor_speed = ${env.monitor_speed}
build_flags =
${env.build_flags}
lib_deps =
ESP8266WiFi
ESP8266HTTPClient
lib_ignore = ${env.lib_ignore}
lib_extra_dirs =
${env.lib_extra_dirs}
[env:esp8266BasicTest]
extends = esp8266_common
[env:esp32BasicTest]
extends = esp32_common