Automation
Synchronize your lights with the flag status
The Formula 1 Track Status Blueprint for Home Assistant lets you synchronize your lights with the live race flag status.
It is now maintained by EvertJob. You can find the latest version and full setup instructions here: 👉 F1-Blueprint
Race Control Event Notifications
This automation listens for f1_sensor_race_control_event events and sends the Message field from each event as a notification in Home Assistant. It provides real-time updates from Race Control, such as flag changes or incident reports.
alias: F1 - Race Control Notification
description: Sends Race Control messages as notifications in Home Assistant
trigger:
- platform: event
event_type: f1_sensor_race_control_event
condition: []
action:
- service: notify.persistent_notification
data:
title: "Race Control"
message: "{{ trigger.event.data.message.Message }}"
mode: queued
max: 10