En3rGy / 14100_Hue

Gira HS logic module to control Philips Hue
MIT License
7 stars 0 forks source link

Feature request: allow light control in addition of group control #2

Closed En3rGy closed 3 years ago

En3rGy commented 3 years ago

En3rGy : Schau mal du bist an der Sache aktiver dran als ich... ich hab das mit den Lichtern und den Gruppen in meinem Baustein ja so gelöst das es einen Eingang für ein Gerät und eine für Gruppen gibt. Und im Baustein frag ich das dann entsprechend so ab:

Code:

if self.id > 0: self.base = "/api/{0}/lights/{1}".format(self.key,self.id) self.mode = "state" self.ident = "D{0}".format(self.id) if self.gid > 0: self.base = "/api/{0}/groups/{1}".format(self.key,self.gid) self.mode = "action" self.ident = "G{0}".format(self.gid)

und entsprechend verwende ich dann in den Funktionen die Vars ... :-) vielleicht kannst du es ja ähnlich so adaptieren :-)

Gruß Paul