High Reading Alert
Send a notification when systolic pressure goes above 140 mmHg so you can take action.
Send a notification when systolic pressure goes above 140 mmHg so you can take action.
Append every reading to a Google Sheet with timestamp so you have a clean record to share.
Email yourself a weekly average and highlight any readings that were outside normal range.
Show your latest systolic and diastolic readings on a Home Assistant dashboard tile.
After a morning reading, trigger a Home Assistant routine — if readings are normal, start your usual schedule.
Build a full blood pressure log in Airtable with color coding for readings that fall outside your target range.
HC Webhook sends a JSON object to your endpoint. The blood_pressure field contains an array of readings from the last sync window.
{
"timestamp": "2026-04-15T08:00:00Z",
"blood_pressure": [
{
"systolic_mmhg": 118,
"diastolic_mmhg": 76,
"time": "2026-04-15T08:00:00Z"
}
]
}