This flow was submitted before accounts existed, so nobody owns it yet. If you submitted it, open the edit link you were given — it still works — and you can attach the flow to an account from there. There is no deadline, and attaching it retires the link for good.
APA PsycTests Live Counter (AWTRIX 3)
Keeps APA PsycTests counter as persistent AWTRIX app
| System | Home Assistant |
|---|---|
| Firmware | AWTRIX 3 |
| Topic | Social |
| Built by | Lukas Legner |
| File | qMpQogQE50Ky.yaml · 1.5 KB |
| Icons | — |
| Published | 2 Jul 2026 |
| Downloads | 34 |
Keeps APA PsycTests counter as persistent AWTRIX app
qMpQogQE50Ky.yaml
blueprint:
name: APA PsycTests Live Counter (AWTRIX 3)
description: Keeps APA PsycTests counter as persistent AWTRIX app
domain: automation
trigger:
- platform: time_pattern
minutes: "/30"
variables:
url: "https://www.apa.org/pubs/databases/psyctests"
mqtt_topic: "awtrix/custom/apa_counter"
action:
- service: http.get
data:
url: "{{ url }}"
response_variable: page
- variables:
value: >
{{ page.content | regex_findall_index('([0-9,]+) records', 0) }}
- service: input_text.set_value
data:
entity_id: input_text.apa_last_value
value: "{{ value }}"
- choose:
- conditions:
- condition: template
value_template: "{{ value != states('input_text.apa_last_value') }}"
sequence:
- service: mqtt.publish
data:
topic: "{{ mqtt_topic }}"
payload: >
{
"id": "apa_counter",
"text": "{{ value }} records in APA PsycTests",
"icon": 75782,
"rainbow": true
}
- default:
- service: mqtt.publish
data:
topic: "{{ mqtt_topic }}"
payload: >
{
"id": "apa_counter",
"text": "{{ value }} records in APA PsycTests",
"icon": 75782,
"rainbow": true
}
More flows for Home Assistant or Social
Something wrong with this flow? Report it.