Get Early Tesla Tire Pressure Alerts in Home Assistant
Use the Tesla Fleet PSI sensors in Home Assistant to warn below 40 PSI, add a morning action item, and snooze the reminder for one or three days.
Cold weather can lower a Tesla tire-pressure reading before the car reports significant underinflation. I wanted an earlier heads-up, so Home Assistant now watches all four PSI sensors from the Tesla Fleet integration and warns us when any tire drops below 40 PSI.

Catch a cold-weather pressure drop early
Tesla says tire pressure drops by about one PSI for every 10-degree Fahrenheit drop in outside temperature. Proper inflation also helps protect the tires and preserve range. That makes the first cold stretch of the season a good time to watch the numbers instead of waiting for the dashboard warning.
The 40 PSI threshold is my early-warning preference. It is not a replacement for the recommended cold pressure printed on the Tire and Loading Information label inside the driver’s door. Tesla’s tire-care instructions say to check cold tires with an accurate gauge and inflate them to the door-label value.
Enable the four Tesla Fleet PSI sensors
The official Tesla Fleet integration exposes front-left, front-right, rear-left, and rear-right tire-pressure sensors. Home Assistant lists those sensors as disabled by default, so enable them from the Tesla vehicle’s device page before building the automation.
The integration polls an awake vehicle every ten minutes. The automation therefore reacts to the latest pressure reading Home Assistant has received; it does not wake the car continuously just to sample the tires.
Turn one low reading into a useful reminder
My automation watches the four pressure sensors for a value below 40 PSI. A ten-second settling period filters out a brief transition while the readings update, then the notification names the tire or tires that are low.
- Send a Home Assistant phone notification to both parents.
- Offer Snooze 1 day and Snooze 3 days actions.
- Include the low-pressure item in the morning briefing while it still needs attention.
- Clear the snooze automatically after all four tires recover to at least 40 PSI.
trigger: any Tesla tire-pressure sensor falls below 40 PSI
guardrail: wait 10 seconds, then verify the readings again
notify: identify the low tire and offer a 1-day or 3-day snooze
briefing: repeat the action item only while the warning is active and unsnoozed
recovery: clear the snooze when every tire is back at or above 40 PSI
The Home Assistant alert and snooze implementation is in my public Tesla Model Y package. The notification uses the same shared notification engine as the rest of the house, while an input_datetime helper stores the snooze deadline so it survives a Home Assistant restart. Joanna’s scheduled briefing reads those same sensor values and helper state, so the notification and briefing do not keep separate snooze clocks.
Keep the alert actionable
A low tire should not become a permanent banner everyone learns to ignore. The short snooze choices cover the common cases: fill it tomorrow, or wait for a weekend errand. Once the pressure is corrected, Home Assistant removes the snooze without another tap.
This fits beside the garage and Tesla automations we already use. Those handle arrival, charging, and garage context; this one watches a slower maintenance signal that becomes more useful as temperatures fall.
Watch the Tesla tire-pressure alert
The short video shows the four Fleet sensors, the below-40 trigger, the phone actions, and the morning-briefing reminder.

