-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
47 lines (43 loc) · 1.33 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
; 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
; -----------------------------------------------------------------------
; Do not modify below this line, use platformio_override.ini instead
[env]
build_flags =
-D EXCAVATOR_MAC=0xAA,0xBB,0xCC,0xDD,0xEE,0xFF
-D WIFI_SSID=\"MyWiFi\"
-D WIFI_PASSWORD=\"MyPassword\"
-D HOSTNAME=\"Liebherr-R980-Control\"
-D OTA_PASSWORD=\"topsecret\"
[platformio]
extra_configs =
platformio_override.ini
; End of «do not modify» section
; -----------------------------------------------------------------------
[env:esp32dev]
platform = espressif32
board = esp32dev
framework = arduino
board_build.partitions = min_spiffs.csv
monitor_speed = 115200
monitor_filters = time
lib_deps =
gyverlibs/EncButton@^3.5.10
adafruit/Adafruit SSD1306@^2.5.11
[env:esp32dev-ota]
platform = espressif32
board = esp32dev
framework = arduino
board_build.partitions = min_spiffs.csv
upload_protocol = espota
upload_port = Liebherr-R980-Control
lib_deps =
gyverlibs/EncButton@^3.5.10
adafruit/Adafruit SSD1306@^2.5.11