Home Assistant integration that shows real-time occupancy data for Sputnik climbing centers in Spain.
- Real-time occupancy count for all Sputnik centers
- Occupancy percentage sensors
- Auto-updates every 5 minutes
- Alcobendas
- Las Rozas
- Berango
- Legazpi
- Chamberí
- Open HACS in Home Assistant
- Click the three dots menu → Custom repositories
- Add this repository URL and select "Integration"
- Search for "Sputnik Climbing" and install
- Restart Home Assistant
- Go to Settings → Devices & Services → Add Integration → Sputnik Climbing
- Copy the
custom_components/sputnik_climbingfolder to your Home Assistantcustom_componentsdirectory - Restart Home Assistant
- Go to Settings → Devices & Services → Add Integration → Sputnik Climbing
For each center, two sensors are created:
| Sensor | Description | Unit |
|---|---|---|
sensor.sputnik_<center>_occupancy |
Current number of people | people |
sensor.sputnik_<center>_occupancy_percentage |
Occupancy as percentage | % |
automation:
- alias: "Alert when Legazpi is busy"
trigger:
- platform: numeric_state
entity_id: sensor.sputnik_legazpi_occupancy_percentage
above: 70
action:
- service: notify.mobile_app
data:
message: "Sputnik Legazpi is getting busy ({{ states('sensor.sputnik_legazpi_occupancy_percentage') }}%)"