A Home Assistant custom integration that creates a calendar entity for Delaware, Ohio refuse and recycling collection schedules. Automatically determines your collection day based on your address and adjusts for holidays.
- Automatic Address Lookup: Uses Delaware County's lookup map to determine your collection day
- Holiday Adjustments: Automatically adjusts collection dates for city holidays
- Calendar Integration: Creates a Home Assistant calendar entity with all upcoming collections
- Unified Events: All events labeled "Trash & Recycling Collection"
- All-Day Events: Collection events appear as all-day events in your calendar
- Automatic Updates: Refreshes schedule and holiday information every 90 days (configurable)
- Open HACS in Home Assistant
- Go to "Integrations"
- Click the 3-dot menu → "Custom repositories"
- Add this repository URL:
https://github.com/seanharsh/HA-DelOH-Refuse-Schedule - Select "Integration" as the category
- Click "Install"
- Restart Home Assistant
- Copy the
custom_components/delawareoh_refusedirectory to your Home Assistantconfig/custom_components/directory - Restart Home Assistant
- Go to Settings → Devices & Services
- Click + Add Integration
- Search for "Delaware OH Refuse Schedule"
- Enter your Delaware, Ohio street address (e.g., "1 Sandusky St")
- Set the update interval (default: 90 days)
- Click Submit
The integration will:
- Look up your collection day using Delaware County's map
- Download and parse the current holiday schedule
- Create a calendar entity with your collection schedule
- Address: Your street address in Delaware, Ohio
- Update Interval: How often to check for schedule updates (1-365 days, default: 90)
Once configured, you'll have a calendar entity named "Refuse Schedule - [Your Address]" that shows:
- Trash & Recycling Collection: Weekly events on your collection day
- Holiday Adjustments: Automatically moved dates when holidays affect collection
The calendar entity ID is based on your address:
- Format:
calendar.delawareoh_refuse_[sanitized_address] - Example:
calendar.delawareoh_refuse_1_sandusky_st
The calendar entity can be used in:
- Calendar Cards: Display upcoming collections in your dashboard
- Automations: Trigger reminders or actions before collection day
- Google Calendar Sync: Sync to external calendars
- Mobile App: View collection schedule on your phone
Get a reminder the night before trash collection:
automation:
- alias: "Trash Collection Reminder"
trigger:
- platform: calendar
entity_id: calendar.delawareoh_refuse_1_sandusky_st
event: start
offset: "-18:00:00" # 18 hours before (6pm day before)
action:
- service: notify.mobile_app
data:
title: "Trash Collection Tomorrow"
message: "Don't forget to put out the trash tonight!"The integration automatically handles Delaware's holiday schedule:
- Memorial Day (Monday): All collections shift forward one day
- Independence Day (Friday): Friday collection moves to Saturday
- Labor Day (Monday): All collections shift forward one day
- Thanksgiving (Thursday): Thursday→Friday, Friday→Saturday
- Christmas (Thursday): Thursday→Friday, Friday→Saturday
- New Year's Day (Thursday): Thursday→Friday, Friday→Saturday
When holidays affect your collection day, the calendar automatically shows the adjusted date.
This integration uses official Delaware, Ohio resources:
- Address Lookup: Delaware County Refuse Collection Map
- Holiday Schedule: Delaware Public Works 2025 Holiday Document
- Ensure you've restarted Home Assistant after installation
- Check that files are in
config/custom_components/delawareoh_refuse/ - Check Home Assistant logs for errors
- Verify your address is within Delaware, Ohio city limits
- Try different address formats (e.g., "1 Sandusky St" vs "1 Sandusky Street")
- Check the official map to ensure your address is in the system
- Check that the integration loaded successfully in Devices & Services
- Verify the coordinator is updating (check entity attributes)
- Enable debug logging to see detailed information
Add to configuration.yaml:
logger:
default: info
logs:
custom_components.delawareoh_refuse: debugThen restart Home Assistant and check the logs.
For issues, questions, or feature requests:
- GitHub Issues: Report an issue
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.
This is an unofficial integration and is not affiliated with the City of Delaware, Ohio or Delaware County. Use at your own risk.