-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplatformio.ini
More file actions
71 lines (65 loc) · 2.05 KB
/
platformio.ini
File metadata and controls
71 lines (65 loc) · 2.05 KB
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
69
70
71
; 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 = iD8266
env_default = esp12e
;env_default = esp12e.debug
;env_default = d1.mini
;env_default = d1.mini.debug
[common]
build_flags = -Wl,-Teagle.flash.4m.ld
debug_build_flags = -Wl,-Teagle.flash.4m.ld -DID8266_DEBUG -DDEBUG_ESP_WIFI -DDEBUG_ESP_PORT=Serial
lib_deps =
https://github.com/jjssoftware/cpp-base32
https://github.com/jjssoftware/ESP8266Complexify
https://github.com/knolleary/pubsubclient
https://github.com/PaulStoffregen/Time
https://github.com/jjssoftware/ESP8266TrueRandom
https://github.com/jjssoftware/arduinoWebSockets
https://github.com/jjssoftware/Cryptosuite
https://github.com/jjssoftware/ESP8266TOTP
https://github.com/jjssoftware/DHT-sensor-library
https://github.com/jjssoftware/NexaCtrl
ArduinoJson
device_ip_address = 192.168.0.20
[env:esp12e]
platform = espressif8266
board = esp12e
framework = arduino
lib_deps = ${common.lib_deps}
build_flags = ${common.build_flags}
monitor_baud = 115200
;upload_port = ${common.device_ip_address}
[env:esp12e.debug]
platform = espressif8266
board = esp12e
framework = arduino
lib_deps = ${common.lib_deps}
build_flags = ${common.debug_build_flags}
monitor_baud = 115200
;upload_port = ${common.device_ip_address}
[env:d1.mini]
platform = espressif8266
board = d1_mini
framework = arduino
lib_deps = ${common.lib_deps}
build_flags = ${common.build_flags}
upload_resetmethod = nodemcu
monitor_baud = 115200
;upload_port = ${common.device_ip_address}
[env:d1.mini.debug]
platform = espressif8266
board = d1_mini
framework = arduino
lib_deps = ${common.lib_deps}
build_flags = ${common.debug_build_flags}
upload_resetmethod = nodemcu
monitor_baud = 115200
;upload_port = ${common.device_ip_address}