Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
co2ampel
ampel-firmware
Commits
c8789a6d
Commit
c8789a6d
authored
1 year ago
by
Eric Duminil
Browse files
Options
Download
Email Patches
Plain Diff
BUGFIX: Removing double default for MQTT
parent
e1da5aea
Pipeline
#8502
passed with stage
in 1 minute and 58 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ampel-firmware/web_config.cpp
+1
-1
ampel-firmware/web_config.cpp
with
1 addition
and
1 deletion
+1
-1
ampel-firmware/web_config.cpp
+
1
-
1
View file @
c8789a6d
...
@@ -100,7 +100,7 @@ namespace web_config {
...
@@ -100,7 +100,7 @@ namespace web_config {
IntTParameter
<
uint16_t
>
mqttIntervalParam
=
IntTParameter
<
uint16_t
>
mqttIntervalParam
=
Builder
<
IntTParameter
<
uint16_t
>>
(
"mqtt_interval"
).
label
(
"MQTT interval"
).
defaultValue
(
MQTT_SENDING_INTERVAL
).
min
(
Builder
<
IntTParameter
<
uint16_t
>>
(
"mqtt_interval"
).
label
(
"MQTT interval"
).
defaultValue
(
MQTT_SENDING_INTERVAL
).
min
(
0
).
step
(
1
).
defaultValue
(
300
).
placeholder
(
"[s]"
).
build
();
0
).
step
(
1
).
placeholder
(
"[s]"
).
build
();
CheckboxTParameter
mqttEncryptionParam
=
CheckboxTParameter
mqttEncryptionParam
=
Builder
<
CheckboxTParameter
>
(
"mqtt_encryption"
).
label
(
"Encrypt MQTT?"
).
defaultValue
(
MQTT_ENCRYPTED
).
build
();
Builder
<
CheckboxTParameter
>
(
"mqtt_encryption"
).
label
(
"Encrypt MQTT?"
).
defaultValue
(
MQTT_ENCRYPTED
).
build
();
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment