npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

homebridge-powerview-3

v3.1.3

Published

Homebridge plugin for Hunter Douglas PowerView shades (Homebridge 2 compatible)

Readme

homebridge-powerview-3

npm npm

Homebridge plugin for Hunter Douglas PowerView window shades. Compatible with Homebridge 1.8+ and Homebridge 2.x (Node.js 22 or 24).

Supports Generation 1 and 2 PowerView hubs.

Requirements

Supported shades

  • Roller shades
  • Horizontal vane shades (e.g. Silhouette, Pirouette) — position plus tilt in Details
  • Vertical vane shades (e.g. Luminette) — position plus tilt in Details
  • Top-down/bottom-up shades (e.g. Duette) — two Window Covering services per shade

Shades work in HomeKit scenes and automations.

Installation

  1. Install and set up Homebridge.
  2. Install the plugin (Homebridge UI Plugins tab, or CLI):
npm install -g homebridge-powerview-3
  1. Add the PowerView platform via the plugin Settings button in the Homebridge UI, or add a platform block to config.json:
"platforms": [
  {
    "platform": "PowerView",
    "name": "PowerView"
  }
]

The hub is contacted at powerview-hub.local by default.

Configuration

| Option | Description | Default | |--------|-------------|---------| | name | Platform name in Homebridge | PowerView | | host | Hub hostname or IP | powerview-hub.local | | refreshShades | Request fresh positions from the hub on every HomeKit read | false | | pollShadesForUpdate | Poll the hub every 30 seconds for position updates | false | | strictErrors | Fail HomeKit reads on hub errors instead of returning the last known position | false | | forceRollerShades | Shade IDs to treat as roller | [] | | forceTopBottomShades | Shade IDs to treat as top/bottom | [] | | forceHorizontalShades | Shade IDs to treat as horizontal vane | [] | | forceVerticalShades | Shade IDs to treat as vertical vane | [] |

Example with host and polling:

{
  "platform": "PowerView",
  "name": "PowerView",
  "host": "192.168.1.50",
  "pollShadesForUpdate": true
}

Unknown shade types

If the hub reports an unknown shade type, the log may show:

Shade 12345 has unknown type 66, assuming roller

Please open an issue with the shade model. You can override detection with the force* arrays above.

Hub resilience and optional features

  • If the hub is busy (HTTP 423, maintenance), shade requests are retried automatically.
  • When a position refresh times out or the hub is unreachable, HomeKit reads return the last known position unless strictErrors is enabled.
  • Battery percentage appears in the Home app (via a linked HomeKit Battery service on each shade) when the hub reports batteryStrength or batteryStatus; levels are refreshed about every 6 hours. Window Covering does not expose battery directly—only the standard Battery service does.
  • Jog (short nudge) is triggered from Hold on the shade control where supported, and when you Identify the accessory in the Home app while pairing.
  • PowerView scenes and multi-room scene collections are probed at startup for future use but are not exposed as HomeKit accessories yet.

Migrating from homebridge-powerview-2

  1. Stop Homebridge.
  2. Uninstall the old plugin: npm uninstall -g homebridge-powerview-2
  3. Install homebridge-powerview-3.
  4. Update your config: keep "platform": "PowerView" and add "name": "PowerView" if missing.
  5. Remove any old PowerView platform entry that pointed at the v2 package, then add the platform again for v3.
  6. Restart Homebridge.

The plugin identifier changed from homebridge-powerview to homebridge-powerview-3. Cached accessories from the old package may appear as duplicates in the Home app. Remove ghost accessories from Home if needed.

Shade examples

Tap an accessory to open/close; long-press for a custom position.

Horizontal and vertical vanes

Use Details after a long-press to adjust tilt. For scenes: use Closed when setting vane tilt; use tilt when setting position.

Top-down/bottom-up

Two controls are created per shade (bottom and top), which can be used independently or in scenes.

Releases

Version history for installers is in RELEASE_NOTES.md. Detailed developer notes are in CHANGELOG.md.

Development

npm install
npm run build
npm run lint
npm test

License

ISC