Hi @anotherjulien , indeed, i hadn’t restarted the F-454 before, so that seems to be the key here.
Regarding heating sensors, i have configured the yaml like in the exemple but i don’t have the temperature.
Is the central unit must be zone #0 ? Could it be different because on my f-454 serveur it’s 1
You seem to have a 4 zones system, right?
If so, it works differently, but I failed to document it when I developed it
In the config file, you should set your zone one as zone: '1'
and central: True
, and then for zones 2 and 3 you set them up normally but with standalone: True
if my memory is correct.
If this works like that for you, I’ll make sure to add it to the documentation!
Yes, it’s a 4 zones system, well i configured like that. I have 3 rooms:
- the living room with what i think, is the central (i can set up the temperature for every zone and define several options. Clearly everything is managed here),
- One bedroom with a termostate where i can adjust the temperature (-/+ 3 degrees),
- Another bedroom like the previous.
The sensors are linked to the F430/4 module which is connected to the F-454 server.
So, i tried to set zone 1 as central
and change the standalone to True
for the others but same result. The climate configuration part is bellow (i also tried standalone to true for zone 1 and nothing):
climate:
- platform: myhome
devices:
zone_1:
zone: '1'
central: True
name: Salon
heat: True
cool: False
standalone: False
manufacturer: Bticino
model: F430/4
zone_2:
zone: '2'
name: Chambre 1
heat: True
cool: False
standalone: True
manufacturer: Bticino
model: F430/4
zone_3:
zone: '3'
name: Chambre 2
heat: True
cool: False
standalone: True
manufacturer: Bticino
model: F430/4
What do you think ?
It’s what i have in HA, no value !
Would you be able to publish debug logs of a period when messages are received for this zone?
I think I have found what might be the problem but I’m not sure yet…
Do you now where i can find these logs ? Are you talking about Home Assistant logs or F454 ?
I have nothing special in HA, execept:
2021-04-05 10:11:35 ERROR (MainThread) [homeassistant.components.climate] Platform myhome does not generate unique IDs. ID 4-1 already exists - ignoring climate.salon
2021-04-05 10:11:35 ERROR (MainThread) [homeassistant.components.climate] Platform myhome does not generate unique IDs. ID 4-2 already exists - ignoring climate.chambre_1
2021-04-05 10:11:35 ERROR (MainThread) [homeassistant.components.climate] Platform myhome does not generate unique IDs. ID 4-3 already exists - ignoring climate.chambre_2
Which doesn’t seem very intresting and/or related to our issue. I have the same kind of error for lights/covers and i can use them.
First you’d need to enable debug logging for the component, adding this to your config:
logger:
logs:
custom_components.myhome: debug
And then collect the “myhome” logs in /config/home-assistant.log
Hi Julien,
Me again, still like your integration but struggling with the climate., I am using 10 zones, will this work properly in your integration ?
what i experience is that i change the temperature setting it will not always react properly, so when i refresh the page it will return to its previous number.
i also getting errors in the log file, can you take a look please, thanks
myhome_climate.yaml file:
# myhome_climate
- platform: myhome
devices:
central_unit:
zone: "#0"
heat: True
cool: False[u]Text[/u]
standalone: False
manufacturer: BTicino
model: 3550
zone_1:
zone: "1"
name: Garage
heat: True
cool: False
standalone: False
manufacturer: BTicino
model: F430/2
zone_2:
zone: "2"
name: Slaapkamer 1
heat: True
cool: False
standalone: False
manufacturer: BTicino
model: F430/2
zone_3:
zone: "3"
name: Badkamer
heat: True
cool: False
standalone: False
manufacturer: BTicino
model: F430/2
zone_4:
zone: "4"
name: Slaapkamer 2
heat: True
cool: False
standalone: False
manufacturer: BTicino
model: F430/2
zone_6:
zone: "6"
name: Vide
heat: True
cool: False
standalone: True
manufacturer: BTicino
model: F430/4
zone_8:
zone: "8"
name: Slaapkamer 3
heat: True
cool: False
standalone: True
manufacturer: BTicino
model: F430/4
zone_9:
zone: "9"
name: Speelkamer
heat: True
cool: False
standalone: True
manufacturer: BTicino
model: F430/4
zone_10:
zone: "10"
name: Wc
heat: True
cool: False
standalone: True
manufacturer: BTicino
model: F430/4
zone_11:
zone: "11"
name: Inkom
heat: True
cool: False
standalone: True
manufacturer: BTicino
model: F430/2
zone_12:
zone: "12"
name: Nachthal
heat: True
cool: False
standalone: True
manufacturer: BTicino
model: F430/2
ERRORS:
2021-04-07 18:07:02 ERROR (MainThread) [custom_components.myhome] Error:
Traceback (most recent call last):
File "/usr/local/lib/python3.8/site-packages/OWNd/connection.py", line 428, in get_next
return OWNMessage.parse(data.decode())
File "/usr/local/lib/python3.8/site-packages/OWNd/message.py", line 145, in parse
return OWNEvent.parse(data)
File "/usr/local/lib/python3.8/site-packages/OWNd/message.py", line 272, in parse
return OWNHeatingEvent(data)
File "/usr/local/lib/python3.8/site-packages/OWNd/message.py", line 464, in __init__
self._zone = int(self._where_param[0])
IndexError: list index out of range
2021-04-07 18:16:07 ERROR (MainThread) [homeassistant.core] Error executing service: <ServiceCall climate.set_temperature (c:c3a7989d58b9ba2807f75d7969a0a905): entity_id=['climate.vide'], temperature=28.0>
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/core.py", line 1504, in catch_exceptions
await coro_or_task
File "/usr/src/homeassistant/homeassistant/core.py", line 1523, in _execute_service
await handler.job.target(service_call)
File "/usr/src/homeassistant/homeassistant/helpers/entity_component.py", line 204, in handle_service
await self.hass.helpers.service.entity_service_call(
File "/usr/src/homeassistant/homeassistant/helpers/service.py", line 642, in entity_service_call
future.result() # pop exception if have
File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 681, in async_request_call
await coro
File "/usr/src/homeassistant/homeassistant/helpers/service.py", line 679, in _handle_entity_call
await result
File "/usr/src/homeassistant/homeassistant/components/climate/__init__.py", line 544, in async_service_temperature_set
await entity.async_set_temperature(**kwargs)
File "/config/custom_components/myhome/climate.py", line 300, in async_set_temperature
await self._gateway.send(OWNHeatingCommand.set_temperature(where=self._zone, temperature=target_temperature, mode=CLIMATE_MODE_HEAT, standalone=self._standalone))
File "/config/custom_components/myhome/gateway.py", line 290, in send
await command_session.send(message=message)
File "/usr/local/lib/python3.8/site-packages/OWNd/connection.py", line 496, in send
raw_response = await self._stream_reader.readuntil(OWNSession.SEPARATOR)
File "/usr/local/lib/python3.8/asyncio/streams.py", line 629, in readuntil
raise exceptions.IncompleteReadError(chunk, None)
asyncio.exceptions.IncompleteReadError: 0 bytes read on a total of undefined expected bytes
I have removed/added the climate part from the configurations.yml. Between both, i restarted the Home Assistant. Here are the logs with a little cleaning, what do you think ?
2021-04-07 18:38:46 DEBUG (MainThread) [custom_components.myhome] Negotiating test session.
2021-04-07 18:38:46 DEBUG (MainThread) [custom_components.myhome] Negotiating test session.
2021-04-07 18:38:46 DEBUG (MainThread) [custom_components.myhome] Negotiating test session.
2021-04-07 18:38:46 DEBUG (MainThread) [custom_components.myhome] Negotiating test session.
2021-04-07 18:38:46 DEBUG (MainThread) [custom_components.myhome] Negotiating test session.
2021-04-07 18:38:46 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:46 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:46 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:46 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:46 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:46 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#479254593##
2021-04-07 18:38:46 DEBUG (MainThread) [custom_components.myhome] Sending test session password.
2021-04-07 18:38:46 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#811924621##
2021-04-07 18:38:46 DEBUG (MainThread) [custom_components.myhome] Sending test session password.
2021-04-07 18:38:46 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#345648164##
2021-04-07 18:38:46 DEBUG (MainThread) [custom_components.myhome] Sending test session password.
2021-04-07 18:38:46 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#003053393##
2021-04-07 18:38:46 DEBUG (MainThread) [custom_components.myhome] Sending test session password.
2021-04-07 18:38:46 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#276790255##
2021-04-07 18:38:46 DEBUG (MainThread) [custom_components.myhome] Sending test session password.
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Negotiating event session.
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Negotiating event session.
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Negotiating event session.
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Negotiating event session.
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Negotiating event session.
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#624221427##
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Sending event session password.
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#530818284##
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Sending event session password.
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#726912315##
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Sending event session password.
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#862473937##
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Sending event session password.
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#608903934##
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Sending event session password.
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:47 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#805503512##
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#609551485##
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#973121469##
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#941752034##
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#137060644##
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#194894722##
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#125194578##
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#478569325##
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#381479475##
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#182401806##
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-07 18:38:48 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#743575928##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#300578291##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#159124420##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#546053914##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#495579184##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#482389457##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#739806140##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#731432175##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-07 18:38:49 DEBUG (MainThread) [custom_components.myhome] Received: *1*0*11##
@dirk291, Could you try to force the OWNd requirement to 0.7.24? I think most of your problem is related to a bug that was reported a short while ago but I haven’t published the updated integration yet.
@dominik978, this seems odd, lots of things seem to be missing. Did you specifically filter to get ONLY debug logs? If so can you provide all the “myhome” logs, irrespective of their severity?
Do you mean change the manifest.json file FROM
"requirements": ["OWNd==0.7.23"],
TO
"requirements": ["OWNd==0.7.24"],
??
yep, exactly! followed by a restart of HA
Did it, works no Errors
Many thanks, keep up the good work
Hello @anotherjulien, yes i made a small clean up (myhome then only debug).
Some additional events :
2021-04-09 17:24:44 DEBUG (MainThread) [custom_components.myhome] Negotiating test session.
2021-04-09 17:24:44 DEBUG (MainThread) [custom_components.myhome] Negotiating test session.
2021-04-09 17:24:44 DEBUG (MainThread) [custom_components.myhome] Negotiating test session.
2021-04-09 17:24:44 DEBUG (MainThread) [custom_components.myhome] Negotiating test session.
2021-04-09 17:24:44 DEBUG (MainThread) [custom_components.myhome] Negotiating test session.
2021-04-09 17:24:44 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:44 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#104818358##
2021-04-09 17:24:44 DEBUG (MainThread) [custom_components.myhome] Sending test session password.
2021-04-09 17:24:44 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:44 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#127793153##
2021-04-09 17:24:44 DEBUG (MainThread) [custom_components.myhome] Sending test session password.
2021-04-09 17:24:44 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:44 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:44 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:44 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#280336220##
2021-04-09 17:24:44 DEBUG (MainThread) [custom_components.myhome] Sending test session password.
2021-04-09 17:24:44 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#369767276##
2021-04-09 17:24:44 DEBUG (MainThread) [custom_components.myhome] Sending test session password.
2021-04-09 17:24:44 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#762426870##
2021-04-09 17:24:44 DEBUG (MainThread) [custom_components.myhome] Sending test session password.
2021-04-09 17:24:44 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:44 INFO (MainThread) [custom_components.myhome] Test session established.
2021-04-09 17:24:44 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:44 INFO (MainThread) [custom_components.myhome] Test session established.
2021-04-09 17:24:44 INFO (MainThread) [custom_components.myhome] Test session closed.
2021-04-09 17:24:44 INFO (MainThread) [custom_components.myhome] Opening event session.
2021-04-09 17:24:44 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:44 INFO (MainThread) [custom_components.myhome] Test session established.
2021-04-09 17:24:44 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:44 INFO (MainThread) [custom_components.myhome] Test session established.
2021-04-09 17:24:44 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:44 INFO (MainThread) [custom_components.myhome] Test session established.
2021-04-09 17:24:44 INFO (MainThread) [custom_components.myhome] Test session closed.
2021-04-09 17:24:44 INFO (MainThread) [custom_components.myhome] Opening event session.
2021-04-09 17:24:44 INFO (MainThread) [custom_components.myhome] Test session closed.
2021-04-09 17:24:44 INFO (MainThread) [custom_components.myhome] Opening event session.
2021-04-09 17:24:44 INFO (MainThread) [custom_components.myhome] Test session closed.
2021-04-09 17:24:44 INFO (MainThread) [custom_components.myhome] Opening event session.
2021-04-09 17:24:44 INFO (MainThread) [custom_components.myhome] Test session closed.
2021-04-09 17:24:44 INFO (MainThread) [custom_components.myhome] Opening event session.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Negotiating event session.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Negotiating event session.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#282292390##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Sending event session password.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Negotiating event session.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Negotiating event session.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Negotiating event session.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#071801729##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Sending event session password.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#200011212##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Sending event session password.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#705947089##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Sending event session password.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#472551357##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Sending event session password.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Event session established.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Event session established.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Event session established.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Event session established.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Event session established.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Opening command session.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Opening command session.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Opening command session.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Opening command session.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Opening command session.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Opening command session.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Opening command session.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Opening command session.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Opening command session.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Opening command session.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Opening command session.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Opening command session.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Opening command session.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Opening command session.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Opening command session.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Opening command session.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Opening command session.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Opening command session.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#362390034##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#513828403##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#484122254##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#837854947##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#709397268##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#509375584##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#147017864##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#009248206##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#410984020##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#502869920##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Negotiating command session.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#127470141##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#092664303##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#275043757##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session established.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session established.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session established.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session established.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session established.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session established.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session established.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session established.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session established.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session established.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#821389760##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#605630030##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#321522450##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#694274677##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session closed.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session closed.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session closed.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session closed.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session closed.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session closed.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session closed.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session closed.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session closed.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session closed.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Received nonce: *#637612396##
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Sending command session password.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session established.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session established.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session established.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session closed.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session closed.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session closed.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session established.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session established.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session established.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session closed.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session closed.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session closed.
2021-04-09 17:24:45 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session established.
2021-04-09 17:24:45 INFO (MainThread) [custom_components.myhome] Command session closed.
2021-04-09 17:24:46 DEBUG (MainThread) [custom_components.myhome] Reply: *#*1##
2021-04-09 17:24:46 INFO (MainThread) [custom_components.myhome] Command session established.
2021-04-09 17:24:46 INFO (MainThread) [custom_components.myhome] Command session closed.
2021-04-09 17:24:46 DEBUG (MainThread) [custom_components.myhome] Received: *1*0*11##
2021-04-09 17:24:46 DEBUG (MainThread) [custom_components.myhome] Received: *1*0*11##
2021-04-09 17:24:46 DEBUG (MainThread) [custom_components.myhome] Received: *1*0*11##
2021-04-09 17:24:46 DEBUG (MainThread) [custom_components.myhome] Received: *1*0*11##
2021-04-09 17:24:46 DEBUG (MainThread) [custom_components.myhome] Received: *1*0*11##
File "/config/custom_components/myhome/gateway.py", line 232, in listening_loop
File "/config/custom_components/myhome/light.py", line 196, in handle_event
File "/config/custom_components/myhome/gateway.py", line 232, in listening_loop
File "/config/custom_components/myhome/light.py", line 196, in handle_event
File "/config/custom_components/myhome/gateway.py", line 232, in listening_loop
File "/config/custom_components/myhome/light.py", line 196, in handle_event
File "/config/custom_components/myhome/gateway.py", line 232, in listening_loop
File "/config/custom_components/myhome/light.py", line 196, in handle_event
2021-04-09 17:24:53 INFO (MainThread) [custom_components.myhome] Found gateway: 192.168.1.11
2021-04-09 17:24:53 INFO (MainThread) [custom_components.myhome] Found gateway: 192.168.1.11
2021-04-09 17:24:53 INFO (MainThread) [custom_components.myhome] Found gateway: 192.168.1.11
2021-04-09 17:24:53 INFO (MainThread) [custom_components.myhome] Found gateway: 192.168.1.11
2021-04-09 17:24:53 INFO (MainThread) [custom_components.myhome] Found gateway: 192.168.1.11
2021-04-09 17:24:53 INFO (MainThread) [custom_components.myhome] Found gateway: 192.168.1.11
Hi Julien,
still have some issues, maybee this has something to do with the Bticino installation.
I am using a BTI 3550 central unit, when increase the temperature in a room it start to heating but after some moments the temp change back to the initial value ?
an other thing is the garage ( see picture) zone 1, is always dropping down to zero ??
do you experienced somthing like that or do you now the solution ?
Thanks.
hi,
thanks a lot for you job!
I’m trying to use events as myhome_general_light_event, but these events aren’t fired when i switch on/off a light. Should i configure something? thanks!
@dominik978, I see that the integration is opening multiple event sessions, that is not expected.
Would you possibly have more than one gateway configured? Or the same gateway configured multiple times?
@dirk291, Can you send debug logs of what happens when you set the temperature?
@TheSundayDev, myhome_general_light_event
is an event that is triggered when you use the general commands, the one to switch ALL the lights on/off. Conversely myhome_area_light_event
does the same for an area, and myhome_group_light_event
does the same for a group.
If you want to trigger something when the state of a single light changes, you’re better off using the actual light entity!
@anotherjulien, I only have one gateway (physical and configured), screenshot below
I’ll investigate further, do you think it has a link with my issue (heating sensors) ?
Can you show me the “integrations” tab?
See the integration column, where it says “MyHome, MyHome, MyHo…”? that means this gateway is configured multiple times.
@anotherjulien well done, it was the issue . I had 5 MyHome integrations. I desactivated 4 and now i have the information from heating sensors. So somewhere, there is probably a file (like cache) that keeps informations about integrations other than configurations.yml in home-assitant . Or it’s more related to docker itself. Is someone else encountered this kind of behavior ?
Hi Julien,
the logfile is big, can I mail it to You ?
regards,
dirk