Skip to main content

Device triggers

Device triggers let you build automations in Home Assistant without entering entity IDs manually. Choose the F1 Sensor device that owns the data, then select the event or state change you want.

Choose a device

The easiest way to build automations is through the Home Assistant UI using device triggers. Go to Settings > Devices & Services > Devices, select any F1 Sensor sub-device, and choose Automations > Add trigger to see the available triggers without writing any YAML.

info

Device triggers are the recommended starting point. Home Assistant stores the selected device and entity references. For ready-to-use YAML, see Automation recipes.

Triggers are organized per sub-device. Only triggers whose backing entity is enabled will appear.

Race device

TriggerTrigger typeFires when
Race week startedrace_week_startedThe race week indicator turns on
Race week endedrace_week_endedThe race week indicator turns off

Session device

TriggerTrigger typeFires when
Safety car deployedsafety_car_deployedSafety car or Virtual Safety Car becomes active
Safety car clearedsafety_car_clearedSafety car or Virtual Safety Car is cleared
Formation start readyformation_start_readyFormation start procedure is ready
Overtake mode enabledovertake_mode_enabledTrack-wide overtake mode is enabled (2026 regulation)
Overtake mode disabledovertake_mode_disabledTrack-wide overtake mode is disabled (2026 regulation)
Session livesession_liveSession status changes to live
Track status: CLEARtrack_status_clearTrack status becomes CLEAR
Track status: YELLOWtrack_status_yellowTrack status becomes YELLOW
Track status: Safety Cartrack_status_safety_carTrack status becomes SC
Track status: VSCtrack_status_vscTrack status becomes VSC
Track status: Red Flagtrack_status_red_flagTrack status becomes RED
Possible on-track incident detectedpossible_on_track_incident_detectedAn incident event has phase candidate or confirmed for this F1 Sensor entry
Possible on-track incident clearedpossible_on_track_incident_clearedNo possible incident remains active
On-track incident detectedon_track_incident_detectedAn incident event has phase confirmed for this F1 Sensor entry
On-track incident clearedon_track_incident_clearedNo confirmed incident remains active

Officials device

TriggerTrigger typeFires when
New race control messagenew_race_control_messageA new race control message is received
New FIA documentnew_fia_documentA new FIA document is published
Investigation changedinvestigation_changedAn investigation or penalty status changes

Drivers device

TriggerTrigger typeFires when
New team radio messagenew_team_radioA new Team Radio clip is published
Favorite driver gained a positionfavorite_driver_position_gainedThe selected driver’s position number decreases
Favorite driver lost a positionfavorite_driver_position_lostThe selected driver’s position number increases
Favorite driver entered the pitsfavorite_driver_entered_pitsThe selected driver changes from outside the pit lane to in the pits
Favorite driver exited the pitsfavorite_driver_exited_pitsThe selected driver changes from in the pits to outside the pit lane
Favorite driver retiredfavorite_driver_retiredThe selected driver changes to retired

Choose a driver with select.f1_favorite_driver and enable Favorite driver in the integration options before using these five triggers. They follow changes in the selected driver’s timing data; a position change does not, by itself, prove an on-track overtake. See the Favorite Driver reference.

System device

TriggerTrigger typeFires when
Live timing onlinelive_timing_onlineThe live timing connectivity entity changes to on, including during replay
Live timing offlinelive_timing_offlineThe live timing connectivity entity changes to off

Incident triggers and event payloads

The two detected incident triggers react to matching incident events, scoped to the selected F1 Sensor entry. They can fire for another incident while an incident binary sensor is already on. Cleared triggers follow the corresponding binary sensor turning off when no matching incident remains active.

Use the f1_sensor_incident event directly when you need to filter updated events, confidence, or session type. Favorite Driver device triggers also follow events for the selected entry. These event-based triggers do not offer a For duration; ordinary state-based device triggers can.

Timing and replay

Live Delay aligns live updates with the broadcast. Replay can repeat historical state changes when you rewind, so replay-driven automations may run again. Test notification and light behavior with this in mind.

Next steps