-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplatformio.ini
58 lines (52 loc) · 1.27 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
#
# Project Configuration File
#
# A detailed documentation with the EXAMPLES is located here:
# http://docs.platformio.org/en/latest/projectconf.html
#
# A sign `#` at the beginning of the line indicates a comment
# Comment lines are ignored.
# Simple and base environment
# [env:mybaseenv]
# platform = %INSTALLED_PLATFORM_NAME_HERE%
# framework =
# board =
#
# Automatic targets - enable auto-uploading
# targets = upload
[platformio]
default_envs = huzzah
[common]
lib_deps_builtin =
SPI
Wire
lib_deps_external =
wiring-timer
SerialCommand
ArduinoJson@5
ThingSpeak
Adafruit PWM Servo Driver Library
Adafruit CAP1188 Library
https://github.com/dniklaus/wiring-app-debug
https://github.com/dniklaus/arduino-utils-mem
https://github.com/ERNICommunity/dbg-trace
https://github.com/ERNICommunity/debug-cli
https://github.com/dniklaus/pubsubclient
https://github.com/ERNICommunity/mqtt-client
https://github.com/dniklaus/CmdSequence#1.0.0
[env:huzzah]
platform = espressif8266
board = huzzah
framework = arduino
lib_deps =
${common.lib_deps_builtin}
${common.lib_deps_external}
upload_port = COM8
[env:nodemcu]
platform = espressif8266
board = nodemcuv2
framework = arduino
lib_deps =
${common.lib_deps_builtin}
${common.lib_deps_external}
upload_port = COM7