Component to integrate with Renault.
This component will set up the following platforms.
Platform | Description |
---|---|
binary_sensor |
Show car charge and plug status as True or False . |
device_tracker |
Show car location. |
sensor |
Show various information about the car status. |
This component requires Home Assistant version 0.115 or greater.
- Using the tool of choice open the directory (folder) for your HA configuration (where you find
configuration.yaml
). - If you do not have a
custom_components
directory (folder) there, you need to create it. - In the
custom_components
directory (folder) create a new folder calledrenault
. - Download all the files from the
custom_components/renault/
directory (folder) in this repository. - Place the files you downloaded in the new directory (folder) you created.
- Restart Home Assistant
- In the HA UI go to "Configuration" -> "Integrations" click "+" and search for "Renault"
Using your HA configuration directory (folder) as a starting point you should now also have this:
custom_components/renault/translations/en.json
custom_components/renault/translations/fr.json
custom_components/renault/translations/sensor.en.json
custom_components/renault/translations/sensor.fr.json
custom_components/renault/__init__.py
custom_components/renault/binary_sensor.py
custom_components/renault/config_flow.py
custom_components/renault/const.py
custom_components/renault/device_tracker.json
custom_components/renault/manifest.json
custom_components/renault/renault_coordinator.py
custom_components/renault/renault_entities.py
custom_components/renault/renault_hub.py
custom_components/renault/renault_vehicle.py
custom_components/renault/sensor.py
custom_components/renault/services.py
custom_components/renault/services.yaml
custom_components/renault/strings.json
Configuration is done in the UI, but some cases need specific configuration.
If you are having issues with the component, please enable debug logging in your configuration.yaml
, for example:
logger:
default: error
logs:
renault_api: debug
custom_components.renault: debug
If you want to contribute to this please read the Contribution guidelines