From 30fd0a498f8924b0fcc0f522f5276ba893ff0212 Mon Sep 17 00:00:00 2001 From: Claude Opus 5 Date: Thu, 30 Jul 2026 10:43:56 +0200 Subject: [PATCH] docs: link the published device driver catalog The README told a reader to send driver changes to srcfl/device-drivers but never said which devices are already covered. That repository now publishes a searchable catalog, generated from its manifests and driver sources on every push, so this points at it from the Drivers section and the documentation index. The page states hardware evidence rather than implying it: 5 of the 80 drivers report being confirmed against physical hardware and 28 report that they have not been, which matches what FTW actually installs. Documentation only, no user-visible change, so no Changeset. Signed-off-by: Hugo Karlsson <48095810+HuggeK@users.noreply.github.com> Co-authored-by: HuggeK <48095810+HuggeK@users.noreply.github.com> --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 54ae431d..440c2ec8 100644 --- a/README.md +++ b/README.md @@ -160,6 +160,13 @@ Drivers are plain Lua files and need no compilation. A driver declares its catalog metadata, lifecycle and required capabilities in one file. The Go host provides capability-scoped Modbus, MQTT, serial, HTTP, WebSocket and TCP access. +Which devices are covered, and on what evidence, is published as a searchable +catalog: **[Device driver catalog](https://srcfl.github.io/device-drivers/)**. +It is generated from `srcfl/device-drivers` on every push to that repository's +`main`, so the versions, tested models and per-target status it shows are the +ones FTW installs. Listing is not an install claim: the page states which +drivers have been confirmed against physical hardware and which have not. + Start with [docs/writing-a-driver.md](docs/writing-a-driver.md). Send shared driver changes to `srcfl/device-drivers`. That repo publishes one signed, content-addressed asset per driver and version. FTW downloads only the chosen @@ -190,6 +197,7 @@ metadata are the detailed reference. - [Operations and recovery](docs/operations.md) - [Full backup and safe restore](docs/backup-and-restore.md) - [Writing a driver](docs/writing-a-driver.md) +- [Device driver catalog](https://srcfl.github.io/device-drivers/) — every supported device and the evidence behind it - [Self-update and release channels](docs/self-update.md) - [Home Assistant](docs/ha-integration.md) - [CalDAV](docs/caldav-integration.md)