homebridge-raymote
v1.1.0
Published
Homebridge plugin to monitor and control Raypak heaters via the Raymote API.
Maintainers
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/Heatmodes) - 🏡 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
- Homebridge v1.3.0 or newer
- Node.js v14 or newer
- A Raypak heater registered with the Raymote service
- A Raymote API token (see Getting your token)
Installation
Homebridge UI (recommended)
- Open the Homebridge UI and go to the Plugins tab.
- Search for
homebridge-raymote. - Click Install.
- Open the plugin settings, enter your Raymote token, and save.
- Restart Homebridge.
Command line
npm install -g homebridge-raymoteConfiguration
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
tokenis 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 (
pollIntervalseconds) to reflect.
Run Homebridge in debug mode to see detailed logs:
homebridge -DContributing
Issues and pull requests are welcome — please open them on the GitHub repository.
License
MIT © Josh Marr
