Skip to content

Releases: gieljnssns/buienalarm-sensor-homeassistant

Fix for 2024.1+

08 Jan 08:57
ef20a78
Compare
Choose a tag to compare

Fix for 2024.1+

HA 2021.12+

04 Dec 09:48
104252b
Compare
Choose a tag to compare

v1.9

10 Aug 09:47
42dcb0b
Compare
Choose a tag to compare

Breaking change:

Your sensors default name will be `sensor.buienalarm_{monitored_condition}`.

The buienalarm_next_rain_forecast sensor returns a date/time of the next rain forecast. To get the time-in-minutes to the next rain forecast a template sensor can be used. Add this template sensor to your configuration:

template:
  - sensor:
    - name: "Buienalarm Next rain forecast (min)"
      unit_of_measurement: "min"
      state: >
        {% if as_timestamp(states('sensor.buienalarm_next_rain_forecast')) %}
          {{ ( ( as_timestamp(states('sensor.buienalarm_next_rain_forecast')) - as_timestamp(now()) ) / 60 ) | round }}
        {% else %}
          {{ states('nonexistent') }}
        {% endif %}

Rewrite sensor to better suite current home assistant state.

20 Jul 07:35
70ad1d3
Compare
Choose a tag to compare

Thanks @StevenLooman for taking the time to rewrite this integration and full API

Rewrite sensor to better suite current home assistant state. This includes use of the DataUpdateCoordinator which coordinates updates for all active sensors, and preventing multiple updates when the Buienalarm API fails/returns a 500 status code.

v1.7

15 Jul 07:00
eaeb08a
Compare
Choose a tag to compare
Update manifest.json

Fixes #19

09 Jul 07:00
3734958
Compare
Choose a tag to compare

Fixes #19

add version number for HA 2021.3.0+

03 Mar 13:09
bff6530
Compare
Choose a tag to compare
v1.5

Update manifest.json

Release v1.4

23 Feb 09:05
7b660bb
Compare
Choose a tag to compare

Avoid TypeError by dependency update

08 Jul 06:25
Compare
Choose a tag to compare
v1.3

Update version number

Fix next_rain_forecast and use less requests

15 Jun 05:32
034e042
Compare
Choose a tag to compare
Merge pull request #5 from gieljnssns/buienalarmdata

Buienalarmdata