Skip to content

Commit

Permalink
Added radio channel and signal strength sensor
Browse files Browse the repository at this point in the history
Bump geckolib to 0.4.6
  • Loading branch information
gazoodle committed Apr 12, 2022
1 parent 5154ce9 commit cf242e0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions custom_components/gecko/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ async def async_setup_entry(hass, entry, async_add_entities):
sensors.append(GeckoSensor(spaman, entry, spaman.status_sensor))
if spaman.ping_sensor is not None:
sensors.append(GeckoSensor(spaman, entry, spaman.ping_sensor))
if spaman.radio_sensor is not None:
sensors.append(GeckoSensor(spaman, entry, spaman.radio_sensor))
if spaman.can_use_facade:
for sensor in spaman.facade.sensors:
sensors.append(GeckoSensor(spaman, entry, sensor))
Expand Down

0 comments on commit cf242e0

Please sign in to comment.