core/homeassistant/components/mazda/sensor.py

197 lines
7.0 KiB
Python

"""Platform for Mazda sensor integration."""
from __future__ import annotations
from homeassistant.components.sensor import SensorEntity
from homeassistant.config_entries import ConfigEntry
from homeassistant.const import (
LENGTH_KILOMETERS,
LENGTH_MILES,
PERCENTAGE,
PRESSURE_PSI,
)
from homeassistant.core import HomeAssistant
from homeassistant.helpers.entity_platform import AddEntitiesCallback
from . import MazdaEntity
from .const import DATA_CLIENT, DATA_COORDINATOR, DOMAIN
async def async_setup_entry(
hass: HomeAssistant,
config_entry: ConfigEntry,
async_add_entities: AddEntitiesCallback,
) -> None:
"""Set up the sensor platform."""
client = hass.data[DOMAIN][config_entry.entry_id][DATA_CLIENT]
coordinator = hass.data[DOMAIN][config_entry.entry_id][DATA_COORDINATOR]
entities: list[SensorEntity] = []
for index, _ in enumerate(coordinator.data):
entities.append(MazdaFuelRemainingSensor(client, coordinator, index))
entities.append(MazdaFuelDistanceSensor(client, coordinator, index))
entities.append(MazdaOdometerSensor(client, coordinator, index))
entities.append(MazdaFrontLeftTirePressureSensor(client, coordinator, index))
entities.append(MazdaFrontRightTirePressureSensor(client, coordinator, index))
entities.append(MazdaRearLeftTirePressureSensor(client, coordinator, index))
entities.append(MazdaRearRightTirePressureSensor(client, coordinator, index))
async_add_entities(entities)
class MazdaFuelRemainingSensor(MazdaEntity, SensorEntity):
"""Class for the fuel remaining sensor."""
_attr_native_unit_of_measurement = PERCENTAGE
_attr_icon = "mdi:gas-station"
def __init__(self, client, coordinator, index) -> None:
"""Initialize Mazda fuel remaining sensor."""
super().__init__(client, coordinator, index)
self._attr_name = f"{self.vehicle_name} Fuel Remaining Percentage"
self._attr_unique_id = f"{self.vin}_fuel_remaining_percentage"
@property
def native_value(self):
"""Return the state of the sensor."""
return self.data["status"]["fuelRemainingPercent"]
class MazdaFuelDistanceSensor(MazdaEntity, SensorEntity):
"""Class for the fuel distance sensor."""
_attr_icon = "mdi:gas-station"
def __init__(self, client, coordinator, index) -> None:
"""Initialize Mazda fuel distance sensor."""
super().__init__(client, coordinator, index)
self._attr_name = f"{self.vehicle_name} Fuel Distance Remaining"
self._attr_unique_id = f"{self.vin}_fuel_distance_remaining"
self._attr_native_unit_of_measurement = (
LENGTH_KILOMETERS
if coordinator.hass.config.units.is_metric
else LENGTH_MILES
)
@property
def native_value(self):
"""Return the state of the sensor."""
fuel_distance_km = self.data["status"]["fuelDistanceRemainingKm"]
return (
None
if fuel_distance_km is None
else round(
self.hass.config.units.length(fuel_distance_km, LENGTH_KILOMETERS)
)
)
class MazdaOdometerSensor(MazdaEntity, SensorEntity):
"""Class for the odometer sensor."""
_attr_icon = "mdi:speedometer"
def __init__(self, client, coordinator, index) -> None:
"""Initialize Mazda odometer sensor."""
super().__init__(client, coordinator, index)
self._attr_name = f"{self.vehicle_name} Odometer"
self._attr_unique_id = f"{self.vin}_odometer"
self._attr_native_unit_of_measurement = (
LENGTH_KILOMETERS
if coordinator.hass.config.units.is_metric
else LENGTH_MILES
)
@property
def native_value(self):
"""Return the state of the sensor."""
odometer_km = self.data["status"]["odometerKm"]
return (
None
if odometer_km is None
else round(self.hass.config.units.length(odometer_km, LENGTH_KILOMETERS))
)
class MazdaFrontLeftTirePressureSensor(MazdaEntity, SensorEntity):
"""Class for the front left tire pressure sensor."""
_attr_native_unit_of_measurement = PRESSURE_PSI
_attr_icon = "mdi:car-tire-alert"
def __init__(self, client, coordinator, index) -> None:
"""Initialize Mazda front left tire pressure sensor."""
super().__init__(client, coordinator, index)
self._attr_name = f"{self.vehicle_name} Front Left Tire Pressure"
self._attr_unique_id = f"{self.vin}_front_left_tire_pressure"
@property
def native_value(self):
"""Return the state of the sensor."""
tire_pressure = self.data["status"]["tirePressure"]["frontLeftTirePressurePsi"]
return None if tire_pressure is None else round(tire_pressure)
class MazdaFrontRightTirePressureSensor(MazdaEntity, SensorEntity):
"""Class for the front right tire pressure sensor."""
_attr_native_unit_of_measurement = PRESSURE_PSI
_attr_icon = "mdi:car-tire-alert"
def __init__(self, client, coordinator, index) -> None:
"""Initialize Mazda front right tire pressure sensor."""
super().__init__(client, coordinator, index)
self._attr_name = f"{self.vehicle_name} Front Right Tire Pressure"
self._attr_unique_id = f"{self.vin}_front_right_tire_pressure"
@property
def native_value(self):
"""Return the state of the sensor."""
tire_pressure = self.data["status"]["tirePressure"]["frontRightTirePressurePsi"]
return None if tire_pressure is None else round(tire_pressure)
class MazdaRearLeftTirePressureSensor(MazdaEntity, SensorEntity):
"""Class for the rear left tire pressure sensor."""
_attr_native_unit_of_measurement = PRESSURE_PSI
_attr_icon = "mdi:car-tire-alert"
def __init__(self, client, coordinator, index) -> None:
"""Initialize Mazda rear left tire pressure sensor."""
super().__init__(client, coordinator, index)
self._attr_name = f"{self.vehicle_name} Rear Left Tire Pressure"
self._attr_unique_id = f"{self.vin}_rear_left_tire_pressure"
@property
def native_value(self):
"""Return the state of the sensor."""
tire_pressure = self.data["status"]["tirePressure"]["rearLeftTirePressurePsi"]
return None if tire_pressure is None else round(tire_pressure)
class MazdaRearRightTirePressureSensor(MazdaEntity, SensorEntity):
"""Class for the rear right tire pressure sensor."""
_attr_native_unit_of_measurement = PRESSURE_PSI
_attr_icon = "mdi:car-tire-alert"
def __init__(self, client, coordinator, index) -> None:
"""Initialize Mazda rear right tire pressure sensor."""
super().__init__(client, coordinator, index)
self._attr_name = f"{self.vehicle_name} Rear Right Tire Pressure"
self._attr_unique_id = f"{self.vin}_rear_right_tire_pressure"
@property
def native_value(self):
"""Return the state of the sensor."""
tire_pressure = self.data["status"]["tirePressure"]["rearRightTirePressurePsi"]
return None if tire_pressure is None else round(tire_pressure)