PetSafe Extended is a Home Assistant custom integration for PetSafe cloud devices. It supports SmartFeed feeders, ScoopFree litter boxes, and SmartDoor Connected Pet Doors.
This fork builds on the original dcmeglio/homeassistant-petsafe integration and adds a much richer SmartDoor feature set, including per-pet activity, per-pet schedules, door diagnostics, and maintenance refresh controls.
The integration uses the petsafe-api Python package for cloud access.
- Home Assistant
2025.12.3or newer for this integration - Home Assistant
2026.3or newer for the locally shippedbrand/icon and logo support
- One config flow for PetSafe cloud login using an emailed confirmation code
- Device selection during setup for feeders, litter boxes, and SmartDoors
- SmartDoor lock, control, override, per-pet, schedule, activity, and diagnostic entities
- Optional SmartDoor schedule entities that can be turned off in integration options
- Manual maintenance refresh buttons for slow-changing schedule and pet-link data
- Feeder service actions for feeding and feeding schedule management
This repository is intended to be added as a custom HACS integration repository.
- Copy
custom_components/petsafe_extendedtoconfig/custom_components/petsafe_extended. - Restart Home Assistant.
- Enter the email address for your PetSafe account.
- Enter the one-time confirmation code sent by PetSafe.
- Select which feeders, litter boxes, and SmartDoors to include.
- Optionally enable or disable SmartDoor schedule entities in the integration options flow.
Migrating from dcmeglio/homeassistant-petsafe has breaking
changes.
- The original integration domain is
petsafe; this fork usespetsafe_extended - Home Assistant will treat this as a completely separate integration
- Existing devices and entities from the original integration are not reused or migrated
- Existing automations, dashboards, helpers, and service calls that reference the old entities will need to be updated
Recommended migration path:
- Remove or uninstall the original
petsafeintegration from Home Assistant. - Restart Home Assistant.
- Install
petsafe_extendedand complete setup again. - Re-select your feeders, litter boxes, and SmartDoors during setup.
- Update any automations, dashboards, or scripts to use the new entity IDs and
petsafe_extended.*service names.
For feeder and litter box users, device-side settings and cloud-stored schedules remain in your PetSafe account, but Home Assistant will create new devices and new entities for them under this integration.
If you prefer, you should be able to run both integrations at the same time and not import your feeders and litter boxes with this integration. This should work, though I've not tested this scenario.
Entities and controls include:
- Sensors:
Battery Level,Last Feeding,Next Feeding,Food Level,Signal Strength - Switches:
Feeding Paused,Child Lock,Slow Feed - Buttons:
Feed,Refresh Schedule Data
Available service actions:
petsafe_extended.feedpetsafe_extended.primepetsafe_extended.add_schedulepetsafe_extended.modify_schedulepetsafe_extended.delete_schedulepetsafe_extended.delete_all_schedules
Entities and controls include:
- Sensors:
Rake Counter,Rake Status,Last Cleaning,Signal Strength - Selects:
Rake Timer - Buttons:
Clean,Reset
All SmartDoor entities attach to the same physical SmartDoor device in Home Assistant.
Core door entities:
- Lock:
Door - Selects:
Locked Mode,Smart Override,Power Loss Action - Events: door-wide
Activity
Per-pet entities:
- Sensors:
Last Seen,Last Activity - Events: per-pet
Activity
Optional SmartDoor schedule entities:
- Per-pet calendars:
Schedule - Per-pet sensors:
Smart Access,Next Smart Access,Next Smart Access Change - Door-level sensors:
Schedule Rule Count,Active Schedule Rule Count,Scheduled Pet Count
SmartDoor diagnostics:
- Binary sensors:
AC Power,Connectivity,Problem - Sensors:
Battery Level,Battery Voltage,Signal Strength
SmartDoor maintenance buttons:
Refresh Pet DataRefresh Schedule Datawhen schedule entities are enabled
SmartDoor schedules are read-only in Home Assistant and are optional.
When enabled, the integration exposes:
- one schedule calendar per scheduled pet
- the current scheduled Smart access for each pet
- the next scheduled Smart access value for each pet
- the next scheduled Smart access change timestamp for each pet
- schedule summary diagnostics on the SmartDoor device
If you do not want schedule entities, disable Enable SmartDoor schedules in the options flow. Doing so removes the
schedule calendars and schedule-derived sensors, hides the SmartDoor Refresh Schedule Data button, and stops the
related schedule polling. Refresh Pet Data, per-pet activity, controls, and diagnostics remain available.
Smart Override temporarily applies one access mode to all pets while the door remains in Smart mode.
- Available options:
Smart Schedule,No access,Out only,In only,Full access - An active override clears when the next schedule event occurs
Smart Schedulereflects the normal cleared state- The PetSafe API does not currently expose a direct clear action, so an active override must expire naturally or be cleared in the PetSafe app
The integration uses different refresh cadences depending on how often the data changes:
- SmartDoor activity: every 30 seconds
- SmartDoor override state: every 30 seconds
- Feeder state and last feeding: every 60 seconds
- Litter box state and activity: every 60 seconds
- Feeder schedules: every 30 minutes
- SmartDoor schedules and preferences: every 30 minutes
- Pet directory and pet-to-device links: every 6 hours
Manual refresh options are available for slower data:
- Feeder
Refresh Schedule Databutton - SmartDoor
Refresh Schedule Databutton - SmartDoor
Refresh Pet Databutton petsafe_extended.refresh_pet_linksservice action
- This is a cloud-polling integration.
- SmartDoor diagnostics expose power outages through
AC Power, which turns off when the door is running on battery. - SmartDoor
Connectivitystays available and reportsoffwhen the door is offline. - SmartDoor schedule and pet entities are added dynamically as new pets or new schedules appear.
Thanks to @dcmeglio for the original PetSafe integration that this project builds on.