Skip to content

node wrapper to facilitate communication with Indigo home automation server

Notifications You must be signed in to change notification settings

yamanote1138/indigo-client

Repository files navigation

indigo-client Build License NPM Version

simple node client for Indigo home automation server

Usage

setup, configure and connect

'use strict';
import { IndigoClient } from 'indigo-client';

let client = new IndigoClient(
  'indigo.myhomedomain.com', // hostname
  'admin', // username
  's3cr3t', // password
  1138 // port (optional), defaults to 80
);

set device property to value

client.setDeviceValue( 'living-room-switch', 'isOn', 1)
  .then((response) => {
    console.log(JSON.stringify(response));
  });

About

node wrapper to facilitate communication with Indigo home automation server

Resources

Stars

Watchers

Forks

Packages

No packages published