We are trying to create e new component type for robotic mowers.
We have coped the vacuum component and removed some stuff and added some. All works but in the entity we can not find the buttons such as start stop etc.
What do we need to do to get these?
PS: Not doing a custom component here. The goal is to make a pull request for robotic_mower
It is theese buttons that I am missing in my component. I am trying to replace the vaccum component with a robotic_mower component. So I have replaced the base component vacuum with my robotic_mower component. And also created the sub component automower that inherits from the new base component. All works except that I cant find out how to get buttons in there…
I added a debugprint in supported features and this routine is never called. It fells as if it should be called!? @property
def supported_features(self):
“”“Flag supported features.”""
print(“supported features called”)
return SUPPORTED_FEATURES