I have an esp8266 connected to a weight sensor and it seems like it stopped sending messages after I updated MQTT on HASS to 5.1.1
I see the client in the logs:
1614590337: New connection from 192.168.0.99 on port 1883.
1614590337: New client connected from 192.168.0.99 as bed-sensor (p2, c1, k15, u'homeassistant').
The arduino config:
// Wifi Settings
#define SSID "xxx"
#define PASSWORD "xxx"
// MQTT Settings
#define HOSTNAME "bed-sensor"
#define MQTT_SERVER "192.168.0.250"
#define STATE_TOPIC "home/bedroom/bed"
#define STATE_RAW_TOPIC "home/bedroom/bed/raw"
#define AVAILABILITY_TOPIC "home/bedroom/bed/available"
#define TARE_TOPIC "home/bedroom/bed/tare"
#define mqtt_username "xxx"
#define mqtt_password "xxx"
// HX711 Pins
const int LOADCELL_DOUT_PIN = 2; // Remember these are ESP GPIO pins, they are not the physical pins on the board.
const int LOADCELL_SCK_PIN = 3;
int calibration_factor = 6500; // Defines calibration factor we'll use for calibrating.
Anything needs to change for the esp8266/password config because of that update?