Skip to content

Commit

Permalink
MQTT port limit
Browse files Browse the repository at this point in the history
  • Loading branch information
steadramon committed Sep 1, 2024
1 parent d775a31 commit c986af4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ESPGeiger/src/ConfigManager/ConfigManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ static WiFiManagerParameter MQTTParams[] =
// The broker parameters
WiFiManagerParameter("<br><br><hr><h3>MQTT</h3>"),
WiFiManagerParameter("mqttServer", "<br>IP", "", 16, "input='number' pattern='\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}'"),
WiFiManagerParameter("mqttPort", "Port", "1883", 6, "pattern='\\d{1,5}'"),
WiFiManagerParameter("mqttPort", "Port", "1883", 6, "type='number' min='1' max='65535'"),
WiFiManagerParameter("mqttUser", "User", "", 32),
WiFiManagerParameter("mqttPassword", "Password", "", 32, "type='password'"),
WiFiManagerParameter("mqttTopic", "Root Topic", "ESPGeiger-{id}", 16),
Expand Down

0 comments on commit c986af4

Please sign in to comment.