-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathplatformio.ini
More file actions
69 lines (58 loc) · 1.77 KB
/
platformio.ini
File metadata and controls
69 lines (58 loc) · 1.77 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
; PlatformIO Project Configuration File
; https://docs.platformio.org/page/projectconf.html
;
; This file is for building/testing the Approximate library examples.
;
; To use Approximate as a library in your own PlatformIO project, add to your
; platformio.ini:
; lib_deps = https://github.com/davidchatting/Approximate.git
[env]
framework = arduino
monitor_speed = 9600
lib_extra_dirs = .
extra_scripts = pre:scripts/select_example.py
lib_deps = https://github.com/luisllamasbinaburo/Arduino-List.git
[env:closeby_esp8266]
platform = espressif8266
board = esp12e
custom_src_dir = examples/CloseBy
[env:closeby_esp32]
platform = espressif32
board = esp32dev
custom_src_dir = examples/CloseBy
[env:findmy_esp8266]
platform = espressif8266
board = esp12e
custom_src_dir = examples/FindMy
[env:findmy_esp32]
platform = espressif32
board = esp32dev
custom_src_dir = examples/FindMy/
[env:watchdevice_esp8266]
platform = espressif8266
board = esp12e
custom_src_dir = examples/WatchDevice/
[env:watchdevice_esp32]
platform = espressif32
board = esp32dev
custom_src_dir = examples/WatchDevice/
[env:closebymqtt_esp8266]
platform = espressif8266
board = esp12e
custom_src_dir = examples/CloseByMQTT/
lib_deps = ${env.lib_deps}, https://github.com/knolleary/pubsubclient.git
[env:closebymqtt_esp32]
platform = espressif32
board = esp32dev
custom_src_dir = examples/CloseByMQTT/
lib_deps = ${env.lib_deps}, https://github.com/knolleary/pubsubclient.git
[env:closebysonoff_esp8266]
platform = espressif8266
board = esp12e
custom_src_dir = examples/CloseBySonoff/
lib_deps = ${env.lib_deps}, https://github.com/bxparks/AceButton.git
[env:closebysonoff_esp32]
platform = espressif32
board = esp32dev
custom_src_dir = examples/CloseBySonoff/
lib_deps = ${env.lib_deps}, https://github.com/bxparks/AceButton.git