We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a71ba9 commit df52192Copy full SHA for df52192
custom_components/tinxy/fan.py
@@ -102,7 +102,11 @@ def preset_modes(self) -> list[str] | None:
102
@property
103
def supported_features(self) -> FanEntityFeature:
104
"""List all supported features"""
105
- return FanEntityFeature.PRESET_MODE
+ return (
106
+ FanEntityFeature.PRESET_MODE
107
+ | FanEntityFeature.TURN_ON
108
+ | FanEntityFeature.TURN_OFF
109
+ )
110
111
112
def preset_mode(self) -> str | None:
custom_components/tinxy/manifest.json
@@ -10,7 +10,7 @@
10
"iot_class": "cloud_polling",
11
"requirements": [],
12
"ssdp": [],
13
- "version": "3.0.6",
+ "version": "3.2.0",
14
"zeroconf": [
15
{
16
"type": "_http._tcp.local.",
0 commit comments