Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

homebridge-arlo

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

homebridge-arlo

Arlo platform plugin for homebridge

  • 0.0.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
46
increased by31.43%
Maintainers
1
Weekly downloads
 
Created
Source

homebridge-arlo

npm package

donate Slack Channel

Arlo platform plugin for Homebridge.

Installation

  1. Install homebridge using: npm install -g homebridge
  2. Install this plugin using: npm install -g homebridge-arlo
  3. Update your configuration file. See the sample below.

Updating

  • npm update -g homebridge-arlo

Setup

Arlo only allows a single login to each account at a time, as a result, if you are running Homebridge and the Arlo on the same account... logging in on your iPhone to view cameras will log out homebridge's Arlo access.

Therefore, I highly recommend creating an additional account in Arlo, just for homebridge access.

Limitations

This plugin currently only support Base Stations, not cameras. This is mainly because I haven't gotten video streaming to work yet.

Configuration

"platforms": [
   {
       "platform": "Arlo",
       "name": "Arlo",
       "email": "<insert arlo account email address>",
       "password": "<insert arlo account password>"
       "interval": 6000 
   }
]

NOTE: interval time is in milliseconds - e.g. 6000 ms are 10 sec

Optional parameters

By default, Arlo only provides two modes (armed and disarmed). Since HomeKit allows a security system to have 4 states (away, home, night and off), we provide two config parameters to enable support for the additional 2 states. If these configuration parameters aren't provided setting the state to home or night will result in the state being set to away, i.e. armed.

Arlo uses the string modeX to identify each mode, with mode0 used for the default disarmed state and mode1 used for the default armed state. To determine the correct modeX string for your custom state, login to the Arlo web console and click the "Edit Mode" button. The URL will show the modeX string for that custom state, e.g. https://arlo.netgear.com/#/modes/<USER_ID>/edit/mode2

Once you've determined the modeX string of your custom mode(s), you can configure homebridge-arlo to use those for the additional modes available via HomeKit:

  • stay_arm - The modeX label for the custom mode created in Arlo for the home or stay state.
  • night_arm - The modeX label for the custom mode created in Arlo for the night state.

Sample Configuration with Optional Parameters

"platforms": [
   {
       "platform": "Arlo",
       "name": "Arlo",
       "email": "<insert arlo account email address>",
       "password": "<insert arlo account password>",
       "stay_arm": "mode2",
       "night_arm": "mode3"
   }
]

Keywords

FAQs

Package last updated on 24 Jul 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc