-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
55 lines (52 loc) · 1.5 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
; 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 = .
[common]
build_flags =
; Always depend on specific library versions (wherever possible)
; Keep Library names in alphabetical order
; ESP8266WiFi in both cases is necessary to solve a case sensitivity issue with WiFiUdp.h
; TinyGPSPlus is not yet in platformio - https://github.com/platformio/platformio-libmirror/issues/99
lib_deps_external =
Adafruit Unified [email protected]
Adafruit BME280 [email protected]
Adafruit BMP280 [email protected]
Adafruit BMP085 [email protected]
Adafruit HTU21DF [email protected]
DHT sensor [email protected]
DNSServer
ESP8266HTTPClient
ESP8266WebServer
ESP8266WiFi
ESP8266httpUpdate
ESP8266mDNS
EspSoftwareSerial
OneWire
SPI
Ticker
mikalhart/TinyGPSPlus#88c9db5c7491a2877bdd29edac6f8fff40862215
Wire
LiquidCrystal_I2C
knolleary/pubsubclient
extra_scripts = platformio_script.py
[env:nodemcuv2]
lang = DE
platform = espressif8266
framework = arduino
board = nodemcuv2
build_flags = ${common.build_flags} '-DINTL_DE'
lib_deps = ${common.lib_deps_external}
extra_scripts = ${common.extra_scripts}