hass-core/homeassistant/components/speedtestdotnet/const.py
Rohan Kapoor a3c8439ce2
Split out speedtest into a component and a sensor platform ()
* Move sensor.speedtest to the new speedtestdotnet component.

* Split out speedtest.net into a component and sensor platform

* Remove the throttle and add async_track_time_interval

* Add should_poll and cleanup

* Update requirements_all.txt

* Move time interval tracking out of the data class and into the setup method

* Add now=None argument to update
2019-02-04 00:47:04 -08:00

10 lines
236 B
Python

"""Consts used by Speedtest.net."""
DOMAIN = 'speedtestdotnet'
DATA_UPDATED = '{}_data_updated'.format(DOMAIN)
SENSOR_TYPES = {
'ping': ['Ping', 'ms'],
'download': ['Download', 'Mbit/s'],
'upload': ['Upload', 'Mbit/s'],
}