Formula 1 live data integration for ioBroker — race calendar, standings, session results and real-time live data via the official F1 Live Timing feed.
- Race Calendar — Next race & session info with countdown (days/hours)
- Full Season Calendar — All rounds of the current season as JSON
- Championship Standings — Driver and constructor standings with points and wins
- Session Results — Race, qualifying, sprint, and all three practice sessions
- Live Session Data — Real-time data via F1 Live Timing SignalR WebSocket
- Track status (AllClear / Yellow / SafetyCar / VSC / RedFlag)
- Session status and name
- Current & total laps
- Time remaining / elapsed
- Track weather (air temp, track temp, rain, wind, humidity)
- Driver positions with gaps, lap times and tyre info
- Top 3 live leaderboard
- Race control messages
- Pit stops
- Tyre compounds per driver
- Team radio
f1.0
├── info.connection
├── schedule/
│ ├── next_race_name / round / circuit / country / date / countdown_days
│ ├── next_session_name / type / date / countdown_hours
│ ├── weekend_json (all sessions of current weekend as JSON)
│ └── calendar (full season calendar as JSON)
├── standings/
│ ├── drivers (JSON array)
│ ├── teams (JSON array)
│ └── last_update
├── results/
│ ├── race / qualifying / sprint / fp1 / fp2 / fp3 (JSON arrays)
│ └── last_update
└── live/ (only active during session ±30 min)
├── is_live / session_name / session_status / track_status
├── laps_current / laps_total
├── time_remaining / time_elapsed
├── weather / race_control / top_three
├── drivers / tyres / pit_stops / team_radio
└── last_update
| Channel | Source | Update |
|---|---|---|
schedule/ |
Jolpica API (ergast.com fallback) | Hourly |
standings/ |
Jolpica API (ergast.com fallback) | Hourly / after race |
results/ |
Jolpica API (ergast.com fallback) | Hourly / after each session |
live/ |
F1 Live Timing SignalR WebSocket | Real-time push |
Session schedule for the current Grand Prix with live countdown. Colors, font sizes, timezone and language are configurable per widget instance in the VIS editor.
- ioBroker >= 5.0.19
- Node.js >= 20
- Internet connection
- (bloop) Complete adapter rewrite — new clean 4-channel data structure
- (bloop) Replaced OpenF1 REST polling with F1 Live Timing SignalR WebSocket (real-time push)
- (bloop) Replaced OpenF1 schedule with Jolpica/Ergast API (more reliable, works outside race weekends)
- (bloop) Added automatic fallback from Jolpica to ergast.com on connectivity issues
- (bloop) Added 404-safe result fetching — partial failures no longer block other results
- (bloop) New data points: time_remaining, time_elapsed, laps_current, top_three, team_radio, full season calendar
- (bloop) Live session detection via schedule timing (±30 min window)
- (bloop) Automatic result & standings refresh on session end
- (bloop) Removed telemetry/car-data/location endpoints (not available outside active sessions)
- (bloop) Added VIS1 F1 Sessions widget with configurable colors, fonts and countdown
- (bloop) Dynamic widget scaling to any size in VIS editor
- (bloop) Countdown shows days, hours, minutes, seconds
- (bloop) Removed unused widgets
- (bloop) Fixed repository checker findings for Dependabot and CI
- (bloop) Added missing translations and maintenance metadata
- (bloop) Initial release
- (bloop) Live F1 data from OpenF1 API
- (bloop) Next race info, standings, live session data
MIT License
Copyright (c) 2026 Martin (bloop) bloop16@hotmail.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
This project is not affiliated with, endorsed by, or in any way officially connected with Formula 1, the FIA, or any of their subsidiaries or affiliates.
F1®, FORMULA ONE®, FORMULA 1®, FIA FORMULA ONE WORLD CHAMPIONSHIP®, GRAND PRIX® and related marks are trademarks of Formula One Licensing B.V.
This adapter is intended for personal, non-commercial use only. Data is sourced from Jolpica (Ergast mirror) and the official F1 Live Timing feed.