-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
93 lines (86 loc) · 2.89 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
; 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]
default_envs = esp8266_main, esp32_main, arduino_ui, arduino_test, leonardo_main, leonardo_test
[env:esp8266_main]
platform = espressif8266
board = esp01_1m
framework = arduino
build_flags = -D PLATFORM_ESP -D FUNCTION_CONTROL -D TWI_GPIO
lib_deps =
Wire
https://github.com/Links2004/arduinoWebSockets
https://github.com/rlogiacco/CircularBuffer
https://github.com/tobiasschuerg/InfluxDB-Client-for-Arduino.git
https://github.com/RobTillaart/PCF8574
https://github.com/bblanchon/ArduinoJson
https://github.com/cotestatnt/AsyncTelegram2.git#dev
https://github.com/knolleary/pubsubclient.git#2d228f2f862a95846c65a8518c79f48dfc8f188c
[env:esp32_main]
platform = platformio/[email protected]
board = esp32dev
framework = arduino
build_flags = -D PLATFORM_ESP -D FUNCTION_CONTROL -D TWI_GPIO
upload_protocol = esptool
upload_port = /dev/ttyUSB1
lib_deps =
Wire
https://github.com/Links2004/arduinoWebSockets
https://github.com/rlogiacco/CircularBuffer
https://github.com/tobiasschuerg/InfluxDB-Client-for-Arduino.git
https://github.com/RobTillaart/PCF8574
https://github.com/bblanchon/ArduinoJson
https://github.com/cotestatnt/AsyncTelegram2.git#dev
https://github.com/knolleary/pubsubclient.git#2d228f2f862a95846c65a8518c79f48dfc8f188c
[env:arduino_ui]
platform = atmelavr
board = pro16MHzatmega328
framework = arduino
build_flags = -D PLATFORM_AVR -D FUNCTION_UI
upload_port = /dev/ttyUSB1
monitor_port = /dev/ttyUSB1
monitor_speed = 115200
lib_deps =
Wire
https://github.com/nickgammon/SendOnlySoftwareSerial
https://github.com/rlogiacco/CircularBuffer
[env:arduino_test]
platform = atmelavr
board = pro16MHzatmega328
framework = arduino
build_flags = -D PLATFORM_AVR -D FUNCTION_CONTROL -D FUNCTION_UI
upload_port = /dev/ttyUSB1
monitor_port = /dev/ttyUSB1
monitor_speed = 115200
lib_deps =
https://github.com/nickgammon/SendOnlySoftwareSerial
https://github.com/rlogiacco/CircularBuffer
[env:leonardo_main]
platform = atmelavr
board = leonardo
framework = arduino
build_flags = -D PLATFORM_AVR -D FUNCTION_CONTROL
upload_port = /dev/ttyACM0
monitor_port = /dev/ttyACM0
monitor_speed = 115200
lib_deps =
Wire
https://github.com/rlogiacco/CircularBuffer
[env:leonardo_test]
platform = atmelavr
board = leonardo
framework = arduino
build_flags = -D PLATFORM_AVR -D FUNCTION_CONTROL -D FUNCTION_UI
upload_port = /dev/ttyACM0
monitor_port = /dev/ttyACM0
monitor_speed = 115200
lib_deps =
https://github.com/nickgammon/SendOnlySoftwareSerial
https://github.com/rlogiacco/CircularBuffer