mirror of https://github.com/arendst/Tasmota.git
Add support for (Yeelight) Mi Desk Pro using binary tasmota32solo1.bin and template named "Mi Desk Pro"
This commit is contained in:
parent
5c775553be
commit
0025a1485b
|
@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file.
|
||||||
### Added
|
### Added
|
||||||
- Inital support for Wi-Fi extender (#12784)
|
- Inital support for Wi-Fi extender (#12784)
|
||||||
- Neopool commands ``NPPHRes``, ``NPCLRes`` and ``NPIonRes`` (#12813)
|
- Neopool commands ``NPPHRes``, ``NPCLRes`` and ``NPIonRes`` (#12813)
|
||||||
|
- Support for (Yeelight) Mi Desk Pro using binary tasmota32solo1.bin and template named "Mi Desk Pro"
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Make Sonoff L1 MusicSync persistent (#12008)
|
- Make Sonoff L1 MusicSync persistent (#12008)
|
||||||
|
|
|
@ -105,6 +105,7 @@ The latter links can be used for OTA upgrades too like ``OtaUrl http://ota.tasmo
|
||||||
- Command ``SetSensor1..127 0|1`` to globally disable individual sensor driver
|
- Command ``SetSensor1..127 0|1`` to globally disable individual sensor driver
|
||||||
- Neopool commands ``NPPHRes``, ``NPCLRes`` and ``NPIonRes`` [#12813](https://github.com/arendst/Tasmota/issues/12813)
|
- Neopool commands ``NPPHRes``, ``NPCLRes`` and ``NPIonRes`` [#12813](https://github.com/arendst/Tasmota/issues/12813)
|
||||||
- Support for second DNS server
|
- Support for second DNS server
|
||||||
|
- Support for (Yeelight) Mi Desk Pro using binary tasmota32solo1.bin and template named "Mi Desk Pro"
|
||||||
- Initial support for Tasmota Mesh (TasMesh) providing node/broker communication using ESP-NOW [#11939](https://github.com/arendst/Tasmota/issues/11939)
|
- Initial support for Tasmota Mesh (TasMesh) providing node/broker communication using ESP-NOW [#11939](https://github.com/arendst/Tasmota/issues/11939)
|
||||||
- Berry ESP32 partition manager [#12465](https://github.com/arendst/Tasmota/issues/12465)
|
- Berry ESP32 partition manager [#12465](https://github.com/arendst/Tasmota/issues/12465)
|
||||||
- Berry ESP32 support for I2S audio mp3 playback
|
- Berry ESP32 support for I2S audio mp3 playback
|
||||||
|
|
|
@ -150,6 +150,11 @@ void RotaryInit(void) {
|
||||||
Rotary.model = 0;
|
Rotary.model = 0;
|
||||||
}
|
}
|
||||||
#endif // ESP8266
|
#endif // ESP8266
|
||||||
|
#ifdef ESP32
|
||||||
|
if (ValidTemplate("Mi Desk Pro")) {
|
||||||
|
Rotary.model = 0;
|
||||||
|
}
|
||||||
|
#endif // ESP32
|
||||||
|
|
||||||
RotaryInitMaxSteps();
|
RotaryInitMaxSteps();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue