For AI agents: the complete documentation index is available at /llms.txt, the full documentation bundle is available at /llms-full.txt, and this page is available as Markdown at /developers/blog/2025-04-24-device-tracker-accuracy.md.
class ExampleTrackerEntity(TrackerEntity): """Test tracker entity.""" _attr_location_accuracy: float = 2.5 @cached_property def location_accuracy(self) -> float: """Return the location accuracy of the device. Value in meters. """ return self._attr_location_accuracy