homebridge-ring-alarm-smockledeprecated

Homebridge plugin for ring doorbells, cameras, security alarm system and smart lighting

Usage no npm install needed!

<script type="module">
  import homebridgeRingAlarmSmockle from 'https://cdn.skypack.dev/homebridge-ring-alarm-smockle';
</script>

README

homebridge-ring-alarm

CircleCI Donate

This Homebridge plugin provides a platform for Ring Doorbells, Ring Cameras, the Ring Alarm System, Ring Smart Lighting, and third party devices that connect to the Ring Alarm System.

Installation

Assuming a global installation of homebridge:

npm i -g homebridge-ring-alarm

Homebridge Configuration

Add the RingAlarm platform in your homebridge config.json file.

{
 "platforms": [
   {
     "platform": "RingAlarm",
     "email": "some.one@website.com",
     "password": "abc123!#",

     // Optional. DO NOT INCLUDE UNLESS NEEDED.  See below for details
     "locationIds": ["488e4800-fcde-4493-969b-d1a06f683102", "4bbed7a7-06df-4f18-b3af-291c89854d60"],
     "alarmOnEntryDelay": false,
     "beamDurationSeconds": 60,
     "hideLightGroups": true
   }
 ]
}

Optional Parameters

Only include an optional parameter if you actually need it. Default behavior without any of the optional parameters should be sufficient for most users.

locationIds: Use this option if you only want a subset of your locations to appear in HomeKit. If this option is not included, all of your locations will be added to HomeKit (which is what most users will want to do).

alarmOnEntryDelay: if true, HomeKit will register a delayed entry event as a triggered alarm.
There are some households where this is a nice feature as a heads up if you have other people who enter your house and you want an alert so that you can disable the alarm for them before it actually goes off. This works well if you automatically arm/disarm on leave/arrive (see setup instructions below)

beamDurationSeconds: Ring smart lighting has a default behavior of only staying on for 60 seconds when you turn on a light via the Ring app. To force a duration when the light is turned on from HomeKit, set this option to a specific number of seconds. If this option is not set, the lights will use the duration from the previous time the light was turned on in the Ring app. For light groups, this will default to 60 seconds. The maximum value is 32767, which is ~9.1 hours.

hideLightGroups: Ring smart lighting allows you to create lighting groups within the Ring app. These groups are convenient for detecting motion in an area of your yard and turning on/off all lights in the group. However, you may wish to group the lights differently in HomeKit and ignore the groups you have configured in Ring. If this option is true, your Ring groups (and their associated motion sensor) will be ignored and will not show up in HomeKit.

cameraStatusPollingSeconds: How frequently to poll for updates to your cameras. Information like light/siren status do not update in real time and need to be requested periodically. Defaults to 30

cameraDingsPollingSeconds: How frequently to poll for new events from your cameras. These include motion and doorbell presses. Defaults to 5

Camera Setup

This plugin will connect all of your Ring cameras to homebridge, but they require a little extra work to get set up. Don't worry, it's really easy. Due to homebridge/HAP limitations, the cameras cannot be added through a bridge and must be added as individual devices. Configure the homebridge plugin like normal, then click on the "+" in the upper right in the Home app, then "Don't have a Code or Can't Scan?", then you should see the cameras listed as individual devices which which you can add. The code that you need for each is the same code you used when setting up homebridge. It should be in the output when you start homebridge, or in your homebridge config.json file. Walk through the setup pages and when you are done, you should see several devices related to the camera:

  • Camera Feed
  • Motion Sensor
  • Light (if camera is equipped)
  • Siren Switch (if camera is equipped)

Please Note - there is not a live feed, just snapshots from the camera. The snapshots work great for seeing who is at the door, or what's going on when motion is detected. Live feeds are much more complicated to implement and are not functional at this time. Please see https://github.com/dgreif/ring-alarm/issues/35 if you want more details.

If you turn on notifications for the motion sensors, or for any doorbell camera, you will get rich notifications from HomeKit with a snapshot from the camera

Supported Devices via Ring Alarm and Ring Smart Lighting Hubs

  • Security Panel
    • This is a software device that represents the alarm for a Ring location
    • Arm Home / Arm Away / Disarm alarm for Ring location.
    • Detect active burglar alarm
    • Sound/silence siren (shows as a "Ring Alarm Siren" switch)
  • Base Station
    • Set Volume (Not currently supported in Home, but works in other apps like Eve)
    • Battery status
  • Keypad
    • Set Volume (Not currently supported in Home, but works in other apps like Eve)
    • Battery status
  • Contact Sensor
    • Detect if sensor is open or closed
    • Tamper status
    • Battery status
  • Motion Sensor
    • Detect motion
    • Tamper status
    • Battery status
  • Ring Smart Lights (Motion Detector, Flood/Path/Spot Lights, Transformer)
    • On/Off
    • Brightness Level
    • Detect motion
    • Battery Status
  • Smoke Alarm
  • Carbon Monoxide Alarm
  • Smoke/Carbon Monoxide Listener
  • Smart Locks
  • Lights/Switches
    • On/Off
    • Brightness Level
    • Hue/Sat/Color Temp are possible, but currently not supported. Please open an issue if you have a device that you would be able to test these on.

Alarm Modes

Ring Mode HomeKit Mode
Disarmed Off
Home Home
Away Away
Home Night

Entry delays and bypassed sensors (ex. for Home mode) are all controlled in the Ring app. These settings will automatically be used by HomeKit.

Note: Using Night mode in HomeKit will activate Home mode on the Ring alarm. HomeKit should immediately switch to Home to match.

Changes Modes on Arrive/Leave Home

The Home app allows you to create an automation that runs when you arrive/leave home. If you include an accessory or scene that "allows access" to your home (e.g. Security System or Lock), the Home app will require you to manually verify that you actually want to run the automation every time it gets triggered. For anyone who wants to arm/disarm their Ring Alarm automatically, this manual verification can be quite annoying. To work around this issue, you can add two "dummy" switches to you homebridge setup using homebridge-dummy. You can then use these dummy switches to trigger your other automation (e.g. Arm/Disarm Ring Alarm).

Example Dummy Config

"accessories": [
    {
      "accessory": "DummySwitch",
      "name": "Arrived Home"
    },
    {
      "accessory": "DummySwitch",
      "name": "Left Home"
    }
]

Example Home Automations

Trigger Action
People Arrive Turn on "Arrived Home"
People Leave Turn on "Left Home"
"Arrived Home" turns on Set Ring Alarm mode to Off
"Left Home" turns on Set Ring Alarm mode to Away