-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathplatformio.ini
More file actions
116 lines (105 loc) · 3.63 KB
/
Copy pathplatformio.ini
File metadata and controls
116 lines (105 loc) · 3.63 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
; 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 = norvi_ae01_r
[common]
serial_speed = 115200
[common_env_data]
lib_deps =
DallasTemperature
Wire
https://github.com/PaulStoffregen/OneWire.git#800f26f3ee6eb446a72e013785cac3700e54cc13
Adafruit Unified Sensor
NTPClient @ 3.2.1
TimeZone @ 1.2.6
bblanchon/ArduinoJson @ 7.3.2
thomasfredericks/Bounce2
marvinroger/AsyncMqttClient
[env:norvi_ae01_r]
platform = espressif32 @ 7.0.1
board = esp32dev
framework = arduino
build_flags =
; FW_VERSION is auto-maintained by release-please — do not edit manually
'-D FW_VERSION="5.0.1"' # x-release-please-version
'-D GITHUB_REPO="smart-swimmingpool/pool-controller"'
-D SERIAL_SPEED=${common.serial_speed}
-D NORVI_AE01_R
-D LOG_BUFFER_SIZE=8192
-std=c++17
-Wno-deprecated-declarations
build_unflags = -Werror=reorder
lib_deps =
${common_env_data.lib_deps}
adafruit/Adafruit SSD1306 @ ^2.5.13
adafruit/Adafruit GFX Library @ ^1.11.11
ricmoo/QRCode @ ^0.0.1
monitor_speed = ${common.serial_speed}
monitor_filters = esp32_exception_decoder, log2file, time, default
upload_speed = 115200
board_build.filesystem = littlefs
[env:olimex_esp32_c6_evb]
platform = https://github.com/pioarduino/platform-espressif32/releases/download/55.03.311/platform-espressif32.zip
board = esp32-c6-devkitc-1
framework = arduino
build_flags =
; FW_VERSION is auto-maintained by release-please — do not edit manually
'-D FW_VERSION="5.0.1"' # x-release-please-version
'-D GITHUB_REPO="smart-swimmingpool/pool-controller"'
-D SERIAL_SPEED=${common.serial_speed}
-D OLIMEX_ESP32_C6_EVB
-D HAS_LOCAL_TFT_UI
-D LOG_BUFFER_SIZE=8192
-std=c++17
-Wno-deprecated-declarations
build_unflags = -Werror=reorder
lib_deps =
${common_env_data.lib_deps}
adafruit/Adafruit GFX Library @ ^1.12.0
adafruit/Adafruit ILI9341 @ ^1.6.1
adafruit/Adafruit ST7735 and ST7789 Library @ ^1.11.0
adafruit/Adafruit BusIO @ ^1.17.0
ricmoo/QRCode @ ^0.0.1
monitor_speed = ${common.serial_speed}
monitor_filters = esp32_exception_decoder, log2file, time, default
upload_speed = 115200
board_build.filesystem = littlefs
board_build.partitions = default_8MB.csv
[env:esp32dev]
platform = espressif32 @ 7.0.1
board = esp32dev
framework = arduino
build_flags =
; FW_VERSION is auto-maintained by release-please — do not edit manually
'-D FW_VERSION="5.0.1"' # x-release-please-version
'-D GITHUB_REPO="smart-swimmingpool/pool-controller"'
-D SERIAL_SPEED=${common.serial_speed}
-D LOG_BUFFER_SIZE=8192
-std=c++17
-Wno-deprecated-declarations ; Suppress deprecation warnings from libraries
build_unflags = -Werror=reorder
lib_deps =
${common_env_data.lib_deps}
monitor_speed = ${common.serial_speed}
; Monitor filters: https://docs.platformio.org/en/latest/core/userguide/device/cmd_monitor.html#filters
monitor_filters = esp32_exception_decoder, log2file, time, default
upload_speed = 115200
board_build.filesystem = littlefs
; OTA Upload Configuration (uncomment to enable)
; For initial setup, use serial upload. After first boot with WiFi,
; you can switch to OTA updates.
;upload_protocol = espota
;upload_port = pool-controller.local ; or use IP address like 192.168.1.100
;upload_flags =
; --timeout=30
; --port=3232
; --auth=YOUR_OTA_PASSWORD ; Set your OTA password here
; Unit Testing options
test_ignore = test_desktop