Merge branch 'develop' into feat/enable-at-debug

This commit is contained in:
samuelbles07
2025-03-31 16:55:12 +07:00
3 changed files with 19 additions and 12 deletions

View File

@ -423,6 +423,11 @@ static void initMqtt(void) {
return;
}
if (networkOption == UseCellular) {
Serial.println("MQTT not available for cellular options");
return;
}
if (mqttClient.begin(mqttUri)) {
Serial.println("Successfully connected to MQTT broker");
createMqttTask();