Skip to content
This repository has been archived by the owner on Mar 3, 2024. It is now read-only.

matthewturner/smartheat-alexa-skill

Repository files navigation

Node.js CI Maintainability Reviewed by Hound

alexa-salus-it500

An Alexa App (skill) to control a Salus IT500 internet thermostat. 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.

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