NorthernMan54 / homebridge-tasmota

Plugin for Tasmota devices leveraging Home Assistant auto discovery
Apache License 2.0
35 stars 9 forks source link

Hide / Delete Devices #37

Closed Acemach1ne closed 2 years ago

Acemach1ne commented 2 years ago

Describe Your Problem: Hi there. Got my Sonoff Dual R3 today and flashed Tasmota. Set up a new HB service for homebridge-tasmota. The device discovering worked well. The following devices were discovered: 2 Switches, Temperature and Energy (as switch). Is there a way to hide/delete the temperature and the energy switch? I only need the two switches.

Thanks in advance!

Logs:

Show the Homebridge logs here with the DEBUG flag set, remove any sensitive information.

Tasmota Device Config:

Please include the Tasmota Module Type / Configuration and Template ( if used )

Screenshots:

Environment:

NorthernMan54 commented 2 years ago

It should be possible using an override, and change the tasmotaType to other. Similar to the ifan03 sample in the sample devices. You can find the unique identifier for the one you want to remove by reviewing the logs in debug mode.

Acemach1ne commented 2 years ago

Did this and nothing changed. Deleted my persist and accessories folder too. My config:

{ "name": "Tasmota", "mqttHost": "...", "cleanup": 24, "debug": true, "history": false, "historyInterval": 10, "effects": false, "platform": "Tasmota", "25F74C_ESP32_Temperature": { "tasmotaType": "other" }, "25F74C_ESP32_ENERGY_Total": { "tasmotaType": "other" } }

Any ideas? :-)

Edit: Got it, forgot the override tag. Thanks man!!