Thanks for your reply.
PROGRESS!:
Regarding the sensor entries, as I stated above, I left those off because the documentation says they are optional (will be included by default), and also because when I did include the list (copy and paste from the documentation) I got an error about signal_strength not supported (or something). My mistake was in leaving the “monitored_conditions:” line, which caused no sensors to be included. When I take that off, or include the list as you posted, I get all the sensors. THANKS! I compared your list to the documentation and still can’t figure out what it didn’t like the first time around.
I do have an alarm_control_panel.alarmcom which continues to work fine. However, there was no additional Arlo control panel listed. My mistake was, when I created a dedicated Arlo login account to use with Home Assistant I turned off “Allow Access Rights”. Because I made this a limited account it couldn’t add the panel to Home Assistant. Switching that to on gave me the control panel in HA. YAHOO!
Continuing issue (with some progress):
I now have a “sensor.arlo_cameras” entity, but there are still no camera entities. I am now getting an error in my log:
2017-11-26 14:07:12 ERROR (MainThread) [homeassistant.components.camera] Error while setting up platform arlo
Traceback (most recent call last):
File "/usr/lib/python3.6/site-packages/homeassistant/helpers/entity_component.py", line 171, in _async_setup_platform
SLOW_SETUP_MAX_WAIT, loop=self.hass.loop)
File "/usr/lib/python3.6/asyncio/tasks.py", line 352, in wait_for
return fut.result()
File "/usr/lib/python3.6/asyncio/futures.py", line 244, in result
raise self._exception
File "/usr/lib/python3.6/asyncio/tasks.py", line 179, in _step
result = coro.send(None)
File "/usr/lib/python3.6/asyncio/coroutines.py", line 210, in coro
res = func(*args, **kw)
File "/usr/lib/python3.6/site-packages/homeassistant/components/camera/arlo.py", line 61, in async_setup_platform
cameras.append(ArloCam(hass, camera, config))
File "/usr/lib/python3.6/site-packages/homeassistant/components/camera/arlo.py", line 78, in __init__
self._camera.base_station.refresh_rate = SCAN_INTERVAL.total_seconds()
AttributeError: 'NoneType' object has no attribute 'refresh_rate'
To me, this reads like some kind of time-out during the initialization process for the camera component of HA. I’ll research possible solutions and welcome any additional input.
-Best