forked from ThFischer/OpenSprinkler-for-ESP12F_Relay_X4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
59 lines (55 loc) · 1.87 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
; 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
; adapt to the already existing folder structure.
; usually there's src/ and include/ folders.
; redirect them both.
[platformio]
src_dir = .
include_dir = .
description = OpenSprinkler Firmware for ESP12F-Relay-X4 board
[env:d1_mini_lite]
platform = espressif8266
board = d1_mini_lite
framework = arduino
lib_ldf_mode = deep
lib_deps =
EthernetENC=https://github.com/jandrassy/EthernetENC/archive/refs/tags/2.0.1.zip
sui77/rc-switch @ ^2.6.3
https://github.com/ThingPulse/esp8266-oled-ssd1306/archive/4.2.0.zip
knolleary/PubSubClient @ ^2.8
; ignore html2raw.cpp source file for firmware compilation (external helper program)
src_filter = +<*> -<html/*>
[env:sanguino_atmega1284p]
platform = atmelavr
board = ATmega1284P
board_build.f_cpu = 16000000L
board_build.variant = sanguino
framework = arduino
lib_ldf_mode = deep
lib_deps =
EthernetENC=https://github.com/jandrassy/EthernetENC/archive/refs/tags/2.0.1.zip
knolleary/PubSubClient @ ^2.8
greiman/SdFat @ 1.0.7
Wire
src_filter = +<*> -<html/*>
[env:esp12f_4ch_relay_board]
platform = espressif8266
board = esp12e
framework = arduino
lib_ldf_mode = deep
lib_deps =
EthernetENC=https://github.com/jandrassy/EthernetENC/archive/refs/tags/2.0.1.zip
sui77/rc-switch @ ^2.6.3
https://github.com/ThingPulse/esp8266-oled-ssd1306/archive/4.2.0.zip
knolleary/PubSubClient @ ^2.8
; ignore html2raw.cpp source file for firmware compilation (external helper program)
src_filter = +<*> -<html/*>
board_build.f_cpu = 160000000L
monitor_speed = 74880