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-raymote

v1.1.0

Published

Homebridge plugin to monitor and control Raypak heaters via the Raymote API.

Readme


This Homebridge plugin connects your Raypak heater to HomeKit using the Raymote cloud service. It exposes a single Thermostat accessory so you can:

  • 🌡️ See the current water temperature (read from the heater's inlet sensors)
  • 🔥 See when the heater is actively firing vs. idle
  • 🎚️ Set the target temperature (50–104 °F)
  • 🔌 Turn the heater on and off (Off / Heat modes)
  • 🏡 Use Siri, automations, and scenes like any other HomeKit thermostat

Note: This is an unofficial, community-built plugin. It is not affiliated with or endorsed by Raypak. It talks to the same Raymote cloud API your phone app uses, so the heater must be online and connected to Raymote.

Requirements

Installation

Homebridge UI (recommended)

  1. Open the Homebridge UI and go to the Plugins tab.
  2. Search for homebridge-raymote.
  3. Click Install.
  4. Open the plugin settings, enter your Raymote token, and save.
  5. Restart Homebridge.

Command line

npm install -g homebridge-raymote

Configuration

The easiest way to configure is through the Homebridge UI settings screen — just enter your token and you're done.

If you prefer to edit config.json manually, add a platform block:

{
  "platforms": [
    {
      "platform": "RaymotePlatform",
      "name": "Raymote Pool Heater",
      "token": "YOUR_TOKEN_HERE"
    }
  ]
}

Options

| Option | Required | Default | Description | | -------------- | :------: | -------------------------------------------- | --------------------------------------------------------------------------- | | platform | yes | — | Must be RaymotePlatform. | | token | yes | — | Your Raymote API token. Keep this secret. See below. | | name | no | Raymote Pool Heater | The accessory name shown in HomeKit. | | baseUrl | no | https://raymote.raypak.com/external/api | Raymote API base URL. Only change this if you know you need to. | | pollInterval | no | 30 | How often (in seconds) to poll the heater for updates. Minimum 5. |

Getting your token

This plugin authenticates with the Raymote service using an API token tied to your account/heater. Enter it in the Raymote Token field in the plugin settings (or the token field in config.json). Treat the token like a password — anyone with it can control your heater.

If you're unsure how to obtain your token, check your Raymote account/app or contact Raypak/Raymote support. Open an issue if you'd like help.

How it works

On startup the plugin registers a single Thermostat accessory and then polls the Raymote API every pollInterval seconds. HomeKit characteristics map to the heater as follows:

| HomeKit characteristic | Source | | ----------------------------- | ----------------------------------------------------------------- | | Current Temperature | Heater inlet temperature sensor | | Target Temperature | Heater setpoint (settable, 50–104 °F) | | Current Heating/Cooling State | Heat while the heater is actively firing, otherwise Off | | Target Heating/Cooling State | Heat when the heater is enabled, Off when disabled (settable) |

Temperatures are exchanged with HomeKit in Celsius internally (HomeKit's native unit) but the heater operates in Fahrenheit, so the plugin converts between the two automatically. Only Off and Heat modes are exposed — Cool and Auto are intentionally hidden because the heater can't cool.

Target vs. Current state: HomeKit shows Heating (active) only when the heater is physically firing. If you turn the heater on but the water is already at temperature, the mode reads Off until it starts firing again — this is expected.

Troubleshooting

  • Accessory never appears / "Plugin is not configured: Raymote Token is missing." — The token is empty. Add it in the plugin settings and restart Homebridge.
  • No data / values not updating — The heater may be offline or unreachable from the Raymote cloud. Confirm it works in the official Raymote app first. Enable Homebridge debug mode (homebridge -D) to see fetch errors.
  • Temperature changes don't stick — Setpoint changes are sent to the cloud, then confirmed on the next poll. Give it a poll cycle (pollInterval seconds) to reflect.

Run Homebridge in debug mode to see detailed logs:

homebridge -D

Contributing

Issues and pull requests are welcome — please open them on the GitHub repository.

License

MIT © Josh Marr