diff --git a/homeassistant/components/cover/knx.py b/homeassistant/components/cover/knx.py
index ae7bcfee17e421d10eab893325852de20bdaaeec..b840c780645b688e91b653ebf7a993dbb3994bcf 100644
--- a/homeassistant/components/cover/knx.py
+++ b/homeassistant/components/cover/knx.py
@@ -181,7 +181,7 @@ class KNXCover(CoverDevice):
         """Return current tilt position of cover."""
         if not self.device.supports_angle:
             return None
-        return self.device.get_angle()
+        return self.device.current_angle()
 
     @asyncio.coroutine
     def async_set_cover_tilt_position(self, **kwargs):