Steven Rollason

Results 47 comments of Steven Rollason

> Perhaps the tuya app has a database of bulb bias voltages and re-scales the input level? But more likely you'll find that the bulb behaves the same way in...

@PaulAnnekov @helldog136 I've tried the the **light.py** ffrom that PR, but it fails with the error: ```text File "/srv/homeassistant/lib/python3.7/site-packages/tuyaha/tuyaapi.py", line 44, in init self.discover_devices() File "/srv/homeassistant/lib/python3.7/site-packages/tuyaha/tuyaapi.py", line 118, in discover_devices...

@StefanoGiu The standard Tuya integration in Home Assistant shouldn't give that warning. Are you using a custom component to override the standard Tuya component in Home Assistant? If you are,...

I mentioned this on the issue, but the constructor for TuyaLight should call the __init__ method of the base class like this: ```python def __init__(self, data, api): super().__init__(data, api) self.last_hs_color...

@scaytrase The way I understand it, this fix will return **support_color** as true if the light is in colour mode, so try either switching it to colour mode outside of...

I have this remote control working in Home Assistant in ZHA, but when pressing the "on" button twice (without pushing "off" button first) no **zha_event** event gets fired and the...

I had similar when trying to override mush-rgb-state-entity, I think the issue is that the variable `--rgb-amber` is local to the card and not available to the theme. Changing it...

I think you should be using "custom:atomic-calendar" rather than "custom:atomic_calendar" (hyphen rather than underscore).

It looks like you have lost the **cards** option from the view when you changed to use card-templater. It should look more like this: ``` views: - cards: - type:...

One thing, you need to use **entities_template** and not **entities**. Also, it is easier to do it like this: ``` (...) cards: - type: 'custom:card-templater' card: type: entities entities_template: >-...