-
Notifications
You must be signed in to change notification settings - Fork 0
/
platformio.ini
55 lines (50 loc) · 1.31 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
; 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
; Copyright (c) 2021-2022 B. Borys
[platformio]
description = Wettertafel Datenanzeige
extra_configs =privat.ini
[env]
build_flags =
-DSERVO=1
-DMQTTein=1
-DMIN_PULSE_WIDTH=500
-DMAX_PULSE_WIDTH=2500
-DMQTTNAME=\"Wettertafel\"
-DOTAUSER=\"usr\"
-DOTAPASSWD=\"pwd\"
<<<<<<< Updated upstream
-DVERSION=\"1.1\"
=======
-DVERSION=\"2.1\"
>>>>>>> Stashed changes
${privat.privat_flags} ; -DWLANSSID=\"SSID\", -DWLANPWD=\"Kennwort\", -DMQTTBROKERIP=\"192.168.Domain.ServerIP\" unter [privat]
upload_speed = 921600
monitor_speed = 115200
platform = espressif8266
board = d1_mini
framework = arduino
<<<<<<< Updated upstream
lib_deps = plapointe6/EspMQTTClient@^1.11.1
=======
lib_deps =
plapointe6/EspMQTTClient@^1.13.3
adafruit/Adafruit PWM Servo Driver Library@^2.4.1
>>>>>>> Stashed changes
[env:debug]
build_type = debug
build_flags =
${env.build_flags}
;-DENABLE_DEBUG_OUTPUT
[env:release]
build_type = release
build_flags =
${env.build_flags}
-DNDEBUG