Aranet4 PRO not automatically notifing

This works when I manually trigger the notification. It will send the notification to my phone. The message looks correct. Is there a way to make it high, medium, or low priority?

The issue is with the trigger. Home Assistant doesn’t send the notification automatically when Aranet4 PRO reads a lower CO2 value.

Home Assistant 2023.8.1
Supervisor 2023.07.1
Operating System 10.4
Frontend 20230802.0 - latest

Simple script that doesn’t auto send phone notifications. Manually it works. I get the phone notification within a couple of seconds. Yes I want it to send me a note when the CO2 is below 760. Just testing / trying it out…

alias: High CO2 levels
description: ""
trigger:
  - type: carbon_dioxide
    platform: device
    device_id: 9a...............................10f
    entity_id: 83..................................bba
    domain: sensor
    below: 760
condition: []
action:
  - variables:
      co2_ppm: "{{ states('sensor.60_c0_bf_48_4a_32_carbon_dioxide') }}"
      temp: "{{ states('sensor.60_c0_bf_48_4a_32_temperature') }}"
      battery: "{{ states('sensor.60_c0_bf_48_4a_32_battery') }}"
      humidity: "{{ states('sensor.60_c0_bf_48_4a_32_humidity') }}"
      pressure: "{{ states('sensor.60_c0_bf_48_4a_32_pressure') }}"
  - device_id: 00a24b35012b184a4bd78390f7934509
    domain: mobile_app
    type: notify
    message: "{{co2_ppm}}ppm / {{temp}}C / {{battery}}%"
    title: "{{co2_ppm}}ppm "
mode: single

Value looks right as see in http://homeassistant.local:8123/developer-tools/state

You want a numeric state trigger.

1 Like

Using Call a service you’ll unlock more features, including critical notifications, interruption level (iOS) and importance (Android).

1 Like

It there a way to do a “device group” of a bunch of cell phones. E.G. Send the message to a couple of iOS and a few android phones?

It is above Introduction | Home Assistant Companion Docs