You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My implementation is here: self.char_get = serv_kettle.configure_char('CurrentTemperature', setter_callback=self.get_temperature)
def get_temperature(self, value): run_cmd() print("Current temperature was called")
And when I tell Siri 'what's current temperature of Bridge?' the get_temperature() function isn't called (print isn't displayed) and Siri answers smth like 'Current temperature at your home is 0 degrees'
Any ideas why it's working so?
The text was updated successfully, but these errors were encountered:
exactly, thank you!
But have got new uncomfortable state, so when I still ask what's current temperature of Bridge? - where Bridge is my accessory - Siri answers 'The temperature at My Home is ...' is it possible to point that answer would have keyword Bridge, not My Home? It returns the correct number
My implementation is here:
self.char_get = serv_kettle.configure_char('CurrentTemperature', setter_callback=self.get_temperature)
def get_temperature(self, value): run_cmd() print("Current temperature was called")
And when I tell Siri 'what's current temperature of Bridge?' the get_temperature() function isn't called (print isn't displayed) and Siri answers smth like 'Current temperature at your home is 0 degrees'
Any ideas why it's working so?
The text was updated successfully, but these errors were encountered: