Skip to content

Commit

Permalink
IEEE is required for get_routes_and_neighbours
Browse files Browse the repository at this point in the history
  • Loading branch information
mdeweerd committed Jul 23, 2023
1 parent 17c1d5f commit ba0c79d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -792,8 +792,8 @@ data:
ieee: entity.my_thermostat_entity
cluster: 0x201
attribute: occupied_heating_setpoint
attr_val: "{% set t = states('sensor.tgt_temperature') %}{{ [(t|int+50) % 2300,2000]|max\
\ if is_number(t) else 2150 }}"
attr_val: "{% set t = states('sensor.tgt_temperature') %}{{ [(t|int+50) % 2300,2000]|max
if is_number(t) else 2150 }}"
state_id: sensor.tgt_temperature
allow_create: true
read_before_write: false
Expand Down
3 changes: 2 additions & 1 deletion custom_components/zha_toolkit/neighbours.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@
from random import uniform

import zigpy.zdo.types as zdo_t
from . import utils as u
from zigpy.exceptions import DeliveryError

from . import utils as u

LOGGER = logging.getLogger(__name__)


Expand Down

0 comments on commit ba0c79d

Please sign in to comment.