commit
649c97b8bb
@ -1,8 +1,33 @@
|
|||||||
# Georide Home assistant
|
# Georide Home assistant
|
||||||
![Logo Georide](georide-logo.png)
|
![Logo Georide](./georide-logo.png)
|
||||||
|
|
||||||
⚠️ this is not an official implementation
|
⚠️ This is not an official implementation
|
||||||
|
|
||||||
Official georide website: https://georide.fr/
|
[![hacs_badge](https://img.shields.io/badge/HACS-Custom-orange.svg?style=for-the-badge)](https://github.com/custom-components/hacs)
|
||||||
|
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg?style=for-the-badge)](https://www.gnu.org/licenses/gpl-3.0)
|
||||||
|
|
||||||
|
Official GeoRide website: https://georide.fr/
|
||||||
|
|
||||||
|
## Description
|
||||||
|
This component add some sensor for GeoRide Tracker
|
||||||
|
|
||||||
|
|
||||||
|
## Options
|
||||||
|
|
||||||
|
| Name | Type | Requirement | `default` Description
|
||||||
|
| ---- | ---- | ------- | -----------
|
||||||
|
| email | string | **Required** | GeoRide email
|
||||||
|
| password | string | **Required** | GeoRide password
|
||||||
|
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
### Option 1
|
||||||
|
- Just folow the integration config steps.
|
||||||
|
|
||||||
|
### Option 2
|
||||||
|
- Add the folowing line in your configuration.yml
|
||||||
|
```yaml
|
||||||
|
georide:
|
||||||
|
email: <your-email>@exmple.com
|
||||||
|
password: <your-password>
|
||||||
|
```
|
@ -0,0 +1,25 @@
|
|||||||
|
{
|
||||||
|
"config": {
|
||||||
|
"title": "GeoRide",
|
||||||
|
"step": {
|
||||||
|
"georide_login": {
|
||||||
|
"title": "Configuration de GeoRide",
|
||||||
|
"description": "T'es un mortard ! V",
|
||||||
|
"data": {
|
||||||
|
"email": "email",
|
||||||
|
"password": "password"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"error": {
|
||||||
|
"faulty_credentials": "Connexion \u00e9chou\u00e9",
|
||||||
|
"unkonwn": "Erreur inconue"
|
||||||
|
},
|
||||||
|
"abort": {
|
||||||
|
"one_instance_allowed": "Seulement un instance est authoris\u00e9e"
|
||||||
|
},
|
||||||
|
"create_entry": {
|
||||||
|
"default": "\n\nConnexion r\u00e9ussie!"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,102 @@
|
|||||||
|
""" odometter sensor for Georide object """
|
||||||
|
|
||||||
|
import logging
|
||||||
|
|
||||||
|
from homeassistant.core import callback
|
||||||
|
from homeassistant.components.switch import SwitchDevice
|
||||||
|
from homeassistant.components.switch import ENTITY_ID_FORMAT
|
||||||
|
|
||||||
|
import georideapilib.api as GeorideApi
|
||||||
|
|
||||||
|
from .const import DOMAIN as GEORIDE_DOMAIN
|
||||||
|
|
||||||
|
|
||||||
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
|
||||||
|
async def async_setup_entry(hass, config_entry, async_add_entities): # pylint: disable=W0613
|
||||||
|
"""Set up Georide tracker based off an entry."""
|
||||||
|
georide_context = hass.data[GEORIDE_DOMAIN]["context"]
|
||||||
|
|
||||||
|
if georide_context.get_token() is None:
|
||||||
|
return False
|
||||||
|
|
||||||
|
trackers = GeorideApi.get_trackers(georide_context.get_token())
|
||||||
|
|
||||||
|
odometer_switch_entities = []
|
||||||
|
for tracker in trackers:
|
||||||
|
entity = GeorideOdometerSensorEntity(tracker.tracker_id, georide_context.get_token,
|
||||||
|
georide_context.get_tracker, data=tracker)
|
||||||
|
hass.data[GEORIDE_DOMAIN]["devices"][tracker.tracker_id] = entity
|
||||||
|
odometer_switch_entities.append(entity)
|
||||||
|
|
||||||
|
async_add_entities(odometer_switch_entities)
|
||||||
|
|
||||||
|
return True
|
||||||
|
|
||||||
|
class GeorideOdometerSensorEntity(SwitchDevice):
|
||||||
|
"""Represent a tracked device."""
|
||||||
|
|
||||||
|
def __init__(self, tracker_id, get_token_callback, get_tracker_callback, data):
|
||||||
|
"""Set up Georide entity."""
|
||||||
|
self._tracker_id = tracker_id
|
||||||
|
self._data = data or {}
|
||||||
|
self._get_token_callback = get_token_callback
|
||||||
|
self._get_tracker_callback = get_tracker_callback
|
||||||
|
self._name = data.tracker_name
|
||||||
|
self._unit_of_measurement = "m"
|
||||||
|
|
||||||
|
self.entity_id = ENTITY_ID_FORMAT.format("odometer") + "." + str(tracker_id)
|
||||||
|
self._state = 0
|
||||||
|
|
||||||
|
|
||||||
|
def update(self):
|
||||||
|
""" update the current tracker"""
|
||||||
|
_LOGGER.info('async_update ')
|
||||||
|
self._data = self._get_tracker_callback(self._tracker_id)
|
||||||
|
self._name = self._data.tracker_name
|
||||||
|
self._state = self._data.odometer
|
||||||
|
|
||||||
|
@property
|
||||||
|
def unique_id(self):
|
||||||
|
"""Return the unique ID."""
|
||||||
|
return self._tracker_id
|
||||||
|
|
||||||
|
@property
|
||||||
|
def name(self):
|
||||||
|
""" Georide switch name """
|
||||||
|
return self._name
|
||||||
|
|
||||||
|
@property
|
||||||
|
def state(self):
|
||||||
|
return self._state
|
||||||
|
|
||||||
|
@property
|
||||||
|
def unit_of_measurement(self):
|
||||||
|
return self._unit_of_measurement
|
||||||
|
|
||||||
|
@property
|
||||||
|
def get_token_callback(self):
|
||||||
|
""" Georide switch token callback method """
|
||||||
|
return self._get_token_callback
|
||||||
|
|
||||||
|
@property
|
||||||
|
def get_tracker_callback(self):
|
||||||
|
""" Georide switch token callback method """
|
||||||
|
return self._get_tracker_callback
|
||||||
|
|
||||||
|
@property
|
||||||
|
def icon(self):
|
||||||
|
return "mdi:counter"
|
||||||
|
|
||||||
|
|
||||||
|
@property
|
||||||
|
def device_info(self):
|
||||||
|
"""Return the device info."""
|
||||||
|
return {
|
||||||
|
"name": self.name,
|
||||||
|
"identifiers": {(GEORIDE_DOMAIN, self._tracker_id)},
|
||||||
|
"manufacturer": "GeoRide"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in new issue