mirror of https://github.com/arendst/Tasmota.git
Update OtaUrl for ESP32
This commit is contained in:
parent
138ddfb16e
commit
a4e4101cf1
|
@ -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 -----------------------
|
||||
|
||||
|
|
Loading…
Reference in New Issue