35 lines
898 B
Python
35 lines
898 B
Python
"""Sensor platform for local_ip."""
|
|
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.entity import Entity
|
|
from homeassistant.util import get_local_ip
|
|
|
|
|
|
async def async_setup_entry(hass: HomeAssistant, config_entry, async_add_entities):
|
|
"""Set up the platform from config_entry."""
|
|
name = config_entry.data["name"]
|
|
async_add_entities([IPSensor(name)], True)
|
|
|
|
|
|
class IPSensor(Entity):
|
|
"""A simple sensor."""
|
|
|
|
def __init__(self, name: str):
|
|
"""Initialize the sensor."""
|
|
self._state = None
|
|
self._name = name
|
|
|
|
@property
|
|
def name(self):
|
|
"""Return the name of the sensor."""
|
|
return self._name
|
|
|
|
@property
|
|
def state(self):
|
|
"""Return the state of the sensor."""
|
|
return self._state
|
|
|
|
def update(self):
|
|
"""Fetch new state data for the sensor."""
|
|
self._state = get_local_ip()
|