diff --git a/homeassistant/components/device_tracker/__init__.py b/homeassistant/components/device_tracker/__init__.py index eb1e06a8df8..4278d3db655 100644 --- a/homeassistant/components/device_tracker/__init__.py +++ b/homeassistant/components/device_tracker/__init__.py @@ -82,7 +82,9 @@ def see(hass, mac=None, dev_id=None, host_name=None, location_name=None, (ATTR_DEV_ID, dev_id), (ATTR_HOST_NAME, host_name), (ATTR_LOCATION_NAME, location_name), - (ATTR_GPS, gps)) if value is not None} + (ATTR_GPS, gps), + (ATTR_GPS_ACCURACY, gps_accuracy), + (ATTR_BATTERY, battery)) if value is not None} hass.services.call(DOMAIN, SERVICE_SEE, data)