diff --git a/tasmota/my_user_config.h b/tasmota/my_user_config.h index b898addd1..ac0583414 100644 --- a/tasmota/my_user_config.h +++ b/tasmota/my_user_config.h @@ -90,7 +90,11 @@ #define MQTT_LOG_LEVEL LOG_LEVEL_NONE // [MqttLog] (LOG_LEVEL_NONE, LOG_LEVEL_ERROR, LOG_LEVEL_INFO, LOG_LEVEL_DEBUG, LOG_LEVEL_DEBUG_MORE) // -- Ota ----------------------------------------- +#ifdef ESP8266 #define OTA_URL "http://ota.tasmota.com/tasmota/release/tasmota.bin.gz" // [OtaUrl] +#else // ESP32 +#define OTA_URL "http://ota.tasmota.com/tasmota32/release/tasmota.bin" // [OtaUrl] +#endif #define OTA_COMPATIBILITY false // [SetOption78] Disable OTA compatibility check // -- MQTT ---------------------------------------- @@ -725,7 +729,7 @@ #define USE_ZIGBEE_COALESCE_ATTR_TIMER 350 // timer to coalesce attribute values (in ms) #define USE_ZIGBEE_MODELID "Tasmota Z2T" // reported "ModelId" (cluster 0000 / attribute 0005) #define USE_ZIGBEE_MANUFACTURER "Tasmota" // reported "Manufacturer" (cluster 0000 / attribute 0004) - #define USE_ZBBRIDGE_TLS // TLS support for zbbridge + #define USE_ZBBRIDGE_TLS // TLS support for zbbridge // -- Other sensors/drivers -----------------------