🤟 Please star this repository if you end up using this integration. If it improved your life in any way, consider donating for my effort using 'Buy Me a Coffee' button above. It will help me continue supporting this product. 🙏
Component to integrate with [bouncie][bouncie].
This component will set up the following platforms.
- 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) downloadbouncie.zip
from latest release. - Unzip
bouncie.zip
file incustom_components
folder. - Restart Home Assistant
- In the HA UI go to "Configuration" -> "Integrations" click "+" and search for "bouncie"
Using your HA configuration directory (folder) as a starting point you should now also have this:
custom_components/bouncie/translations/en.json
custom_components/bouncie/__init__.py
custom_components/bouncie/coordinator.py
custom_components/bouncie/config_flow.py
custom_components/bouncie/const.py
custom_components/bouncie/manifest.json
custom_components/bouncie/sensor.py
custom_components/bouncie/strings.json
The bouncie
integration uses the Bouncie web service as a source for monitoring your car(s).
To generate an Bouncie application credentials -
- Go to the Bouncie Developer Page page
- Login with your
bouncie.com
credentials - Click on
+ ADD APPLICATION
- Provide a
name
for application e.g. Home Assistant Integration - Provide a unique
client_id
e.g. alphanumeric random string - Provide redirect URL to be your Home Assistant URL
- Click on
SAVE
- Visit https://auth.bouncie.com/dialog/authorize?response_type=code&<client_id>=&redirect_uri=<redirect_url> in a browser.
- Follow the prompts to provide your application access to your account
- Copy the alphanumeric string after
<redirect URL provided above>?code=...
- this is yourauthorization_code
- Note down following values to enter in Home Assistant
- Client ID
- Client Secret
- Redirect URL
- Authorization code
This integration currently uses REST API only with polling.
If you want to contribute to this please read the Contribution guidelines