diff --git a/homeassistant/components/device_tracker/__init__.py b/homeassistant/components/device_tracker/__init__.py index 97b9f457703..8b7ff3cb234 100644 --- a/homeassistant/components/device_tracker/__init__.py +++ b/homeassistant/components/device_tracker/__init__.py @@ -161,7 +161,8 @@ class DeviceTracker(object): """ Update device states based on the found devices. """ self.lock.acquire() - found_devices = set(self.device_scanner.scan_devices()) + found_devices = set(dev.upper() for dev in + self.device_scanner.scan_devices()) for device in self.tracked: is_home = device in found_devices