* 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
10 lines
236 B
Python
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'],
|
|
}
|