Skip to content

Commit

Permalink
cosmetic
Browse files Browse the repository at this point in the history
  • Loading branch information
yuhu- committed Feb 8, 2025
1 parent d6fcdf3 commit e2c3ef6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ IotWebConf iotWebConf(HOSTNAME, &dnsServer, &configServer, "", CONFIG_VERSION);
iotwebconf::ParameterGroup connGroup =
iotwebconf::ParameterGroup("conn", "Connection parameters");
iotwebconf::CheckboxParameter staticIPParam = iotwebconf::CheckboxParameter(
"Enable Static IP", "staticIPParam", staticIPValue, STRING_LEN);
"Static IP", "staticIPParam", staticIPValue, STRING_LEN);
iotwebconf::TextParameter ipAddressParam =
iotwebconf::TextParameter("IP address", "ipAddress", ipAddressValue,
STRING_LEN, "", DEFAULT_STATIC_IP);
Expand All @@ -78,7 +78,7 @@ iotwebconf::TextParameter netmaskParam =
STRING_LEN, DEFAULT_NETMASK, DEFAULT_NETMASK);

iotwebconf::ParameterGroup ebusGroup =
iotwebconf::ParameterGroup("ebus", "EBUS configuration");
iotwebconf::ParameterGroup("ebus", "eBUS configuration");
iotwebconf::NumberParameter pwmParam =
iotwebconf::NumberParameter("PWM value", "pwm_value", pwm_value, NUMBER_LEN,
"130", "1..255", "min='1' max='255' step='1'");
Expand Down

0 comments on commit e2c3ef6

Please sign in to comment.