Skip to content

Commit

Permalink
Bugfix for variable type
Browse files Browse the repository at this point in the history
  • Loading branch information
fredlcore committed Feb 26, 2024
1 parent a788165 commit 4b7551e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BSB_LAN/BSB_LAN_config.h.default
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ parameter log_parameters[40] = {
byte mqtt_mode = 1; // MQTT: 1 - send messages in plain text format, 2 - send messages in JSON format, 3 - send messages in rich JSON format. Use this if you want a json package of your logging information printed to the mqtt topic
// JSON payload will be of the structure: {"MQTTDeviceID": {"status":{"log_param1":"value1"}}}
// rich JSON payload will be of the structure: {"MQTTDeviceID": {"id": "parmeter number from log values", "name": "parameter name from logvalues", "value": "query result", "desc": "enum value description", "unit": "unit of measurement", "error", error code}}
byte mqtt_broker_addr[33] = "192.168.178.20:1883"; // MQTT broker. Can be IP address or hostname. Optional port can be specified after trailing colon. If omitted, port defaults to 1883.
char mqtt_broker_addr[33] = "192.168.178.20:1883"; // MQTT broker. Can be IP address or hostname. Optional port can be specified after trailing colon. If omitted, port defaults to 1883.
char MQTTUsername[65] = "User"; // Set username for MQTT broker here or set empty string if no username/password is used.
char MQTTPassword[65] = "Pass"; // Set password for MQTT broker here or set empty string if no password is used.
char MQTTTopicPrefix[65] = "BSB-LAN"; // Optional: Choose the "topic" for MQTT messages here. In case of empty string, default topic name will be used
Expand Down

0 comments on commit 4b7551e

Please sign in to comment.