marq24
(Matthias Marquardt)
January 9, 2026, 5:14pm
1
After I have provided some other integrations in the past, I just have finished the initial release of an alternative to fordpass.
Please note, that this is a private project - I do not have any connection to Ford.
FordConnect-Query Integration for Home Assistant - support for Ford vehicles in Europe (but not only Europe?) [optimized for EV's & EVCC].
Requirements
Known Issues
This is a custom HACS Integration, so you have to add the repository manually to your HACS before you can install it
Your feedback is highly appreciated - TIA
1 Like
bupemko
(BuPeMko)
February 1, 2026, 1:19pm
2
Thanks for putting this together, just wanted to note that when I was trying to get the clientId and secret from Ford it kept failing until I removed the accented characters from my name (and to be on the safe side I put my full name as well under company for the personal developer profile as the 400 error in the network log indicated that the Ford web server was not happy with how the businessName parameter was provided for the OAuth credentials generation).
marq24
(Matthias Marquardt)
February 3, 2026, 5:34pm
3
what’s why the instructions say:
1 Like
skillet
(Skillet)
March 18, 2026, 4:54pm
4
Thank you! Version 2026.3.4 works great in North America.
skillet
(Skillet)
March 18, 2026, 5:35pm
5
Sample Helper Templates for individual tire pressures and battery voltage:
{% set value = state_attr('sensor.fcq_YOUR-VIN-HERE_tirepressure', 'frontLeft') %}
{{ value.replace(' psi', '') | float if value else 0 }}
See Developer tools, Current entity states: Entity: sensor.fcq_YOUR-VIN-HERE_tirepressure
{% set value = state_attr('sensor.fcq_YOUR_VIN_HERE_battery', 'batteryVoltage') %}
{{ value | float | round(1) | string ~ " V" }}
See Developer tools, Current entity states: Entity: sensor.fcq_YOUR-VIN-HERE_battery