Skip to content

matthewturner/alexa-salus-it500

Repository files navigation

!!! While this continues to work, it is no longer maintained and has been replaced by:

https://github.com/matthewturner/smartheat-alexa-skill

https://github.com/matthewturner/smartheat-alexa-smarthome-skill

Node.js CI Maintainability Reviewed by Hound

SmartHeat

An Alexa App (skill) to control older heating systems which are not integrated with Alexa.

Supported Devices

Salus IT500

Please note that this is really ugly because Salus don't provide any kind of API. This skill logs onto their web app using your username and password and sets the temperature as you would in their mobile (web) app. For that reason, you need to embed your login details into web app and host this skill yourself! Do not offer this skill in the Alexa store for other people because it's not secure to collect other people's usernames and passwords.

Until Salus provide their own Alexa skill or a federated authentication method then this is the only option, unfortunately.

Heatmiser

Please note that this is also pretty ugly because Heatmiser does not provide an appropriate API. This skill requires an open port to connect to on your router.

Until Heatmiser provide their own Alexa skill or a federated authentication method then this is the only option, unfortunately.

Summary

This app is a Node.js module, written using the excellent alexa-app module framework by Matt Kruse github

This skill has 8 intents :-

  • Alexa, ask boiler the temperature
  • Alexa, ask boiler to set higher
  • Alexa, ask boiler to set lower
  • Alexa, ask boiler to set to x degrees
  • Alexa, ask boiler to turn [on/off] [for x hours]
  • Alexa, ask boiler to set the default [on/off] temperature to x degrees
  • Alexa, ask boiler to set the default duration to [x hours]
  • Alexa, ask boiler the current defaults
  • Alexa, ask boiler to turn the water [on/off] [for x hours]

Auto-switch off/Hold time

Some thermostats have a hold time which keeps the thermostat on for the specified time and automatically switches it off when the hold time has elapsed.

The last intent can take an optional duration which can be any valid time statement (eg 20 minutes or 3 hours).

  • You will need to prevent Salus from overriding this by setting the off times to a late time (eg 10pm)
  • It is optional and requires a hosted lambda, step function and dynamodb table

Deploying with CloudFormation (in development)

  1. Use the deploy-stack.sh to deploy the lambda, dynamodb tables etc

  2. Enter your lambda ARN in your SmartHome Skill here

Setting up the SmartHome API Skill

  1. Create a lambda and deploy the code using the package/publish scripts

  2. Create a topic to publish to and subscribe the lambda to it

  3. Declare your username/password and the default temperatures for on/off using environment variables

  4. Optionally create the step function and dynamodb table for hold times/auto-switch off

Setting Up the Legacy Skill

  1. Setup an alexa-app-server

  2. Check out this project

  3. Add this module to alexa-app-server

  4. Launch server with your personal credentials as environment variables (eg USERNAME=xyz PASSWORD=abc)

  5. Test on http://localhost:8080/alexa/boiler

  6. Create a new skill in https://developer.amazon.com

  7. Create a lambda and deploy the code using the package/publish scripts

  8. Declare your username/password and the default temperatures for on/off using environment variables

  9. Point to your SSL'd external URL or host in AWS Lambda

  10. Optionally create the step function and dynamodb table for hold times/auto-switch off