diff --git a/homeassistant/components/camera/uvc.py b/homeassistant/components/camera/uvc.py
index 5a84c53554005298e882512773d4948cb01ba1bf..e34b0e26859b0912ea731d7cd3c9517c119c10eb 100644
--- a/homeassistant/components/camera/uvc.py
+++ b/homeassistant/components/camera/uvc.py
@@ -47,6 +47,11 @@ def setup_platform(hass, config, add_devices, discovery_info=None):
         _LOGGER.error('Unable to connect to NVR: %s', str(ex))
         return False
 
+    # Filter out airCam models, which are not supported in the latest
+    # version of UnifiVideo and which are EOL by Ubiquiti
+    cameras = [camera for camera in cameras
+               if 'airCam' not in nvrconn.get_camera(camera['uuid'])['model']]
+
     add_devices([UnifiVideoCamera(nvrconn,
                                   camera['uuid'],
                                   camera['name'])
diff --git a/tests/components/camera/test_uvc.py b/tests/components/camera/test_uvc.py
index 1c87945cff2b0b08cb066006df9c9ded2be82dd8..199fec4cc046ba989a17a2828eb17d04ecc14568 100644
--- a/tests/components/camera/test_uvc.py
+++ b/tests/components/camera/test_uvc.py
@@ -27,10 +27,19 @@ class TestUVCSetup(unittest.TestCase):
         fake_cameras = [
             {'uuid': 'one', 'name': 'Front'},
             {'uuid': 'two', 'name': 'Back'},
+            {'uuid': 'three', 'name': 'Old AirCam'},
         ]
+
+        def fake_get_camera(uuid):
+            if uuid == 'three':
+                return {'model': 'airCam'}
+            else:
+                return {'model': 'UVC'}
+
         hass = mock.MagicMock()
         add_devices = mock.MagicMock()
         mock_remote.return_value.index.return_value = fake_cameras
+        mock_remote.return_value.get_camera.side_effect = fake_get_camera
         self.assertTrue(uvc.setup_platform(hass, config, add_devices))
         mock_remote.assert_called_once_with('foo', 123, 'secret')
         add_devices.assert_called_once_with([
@@ -54,6 +63,7 @@ class TestUVCSetup(unittest.TestCase):
         hass = mock.MagicMock()
         add_devices = mock.MagicMock()
         mock_remote.return_value.index.return_value = fake_cameras
+        mock_remote.return_value.get_camera.return_value = {'model': 'UVC'}
         self.assertTrue(uvc.setup_platform(hass, config, add_devices))
         mock_remote.assert_called_once_with('foo', 7080, 'secret')
         add_devices.assert_called_once_with([