File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 1382
1382
*/
1383
1383
//#define MY_MQTT_CLIENT_PUBLISH_RETAIN
1384
1384
1385
+ /**
1386
+ * @def MY_MQTT_PASSWORD
1387
+ * @brief Used for authenticated MQTT connections.
1388
+ *
1389
+ * Set if your MQTT broker requires username/password.
1390
+ * Example: @code #define MY_MQTT_PASSWORD "secretpassword" @endcode
1391
+ * @see MY_MQTT_USER
1392
+ */
1393
+ //#define MY_MQTT_PASSWORD "secretpassword"
1394
+
1395
+ /**
1396
+ * @def MY_MQTT_USER
1397
+ * @brief Used for authenticated MQTT connections.
1398
+ *
1399
+ * Set if your MQTT broker requires username/password.
1400
+ * Example: @code #define MY_MQTT_USER "username" @endcode
1401
+ * @see MY_MQTT_PASSWORD
1402
+ */
1403
+ //#define MY_MQTT_USER "username"
1404
+
1385
1405
/**
1386
1406
* @def MY_IP_ADDRESS
1387
1407
* @brief Static ip address of gateway (if this is not defined, DHCP will be used).
2053
2073
#define MY_REPEATER_FEATURE
2054
2074
#define MY_PASSIVE_NODE
2055
2075
#define MY_MQTT_CLIENT_PUBLISH_RETAIN
2076
+ #define MY_MQTT_PASSWORD
2077
+ #define MY_MQTT_USER
2056
2078
#define MY_SIGNAL_REPORT_ENABLED
2057
2079
// general
2058
2080
#define MY_WITH_LEDS_BLINKING_INVERSE
Original file line number Diff line number Diff line change @@ -243,8 +243,10 @@ MY_GATEWAY_W5100 LITERAL1
243
243
MY_INCLUSION_BUTTON_EXTERNAL_PULLUP LITERAL1
244
244
MY_MQTT_CLIENT_ID LITERAL1
245
245
MY_MQTT_CLIENT_PUBLISH_RETAIN LITERAL1
246
+ MY_MQTT_PASSWORD LITERAL1
246
247
MY_MQTT_PUBLISH_TOPIC_PREFIX LITERAL1
247
248
MY_MQTT_SUBSCRIBE_TOPIC_PREFIX LITERAL1
249
+ MY_MQTT_USER LITERAL1
248
250
MY_W5100_SPI_EN LITERAL1
249
251
250
252
# Ethernet
You can’t perform that action at this time.
0 commit comments