2.1.0 • Published 4 years ago

tplink-smartplug-node v2.1.0

Weekly downloads
6
License
ISC
Repository
github
Last release
4 years ago

TP-Link Smartplug Control for Node

Functionality ported from https://github.com/softScheck/tplink-smartplug to Node.js.

This library allows you to control HS100 and HS110 devices from TP-Link from Node.

Installation

npm i tplink-smartplug-node

Usage

Simple example:

const TPLinkSmartPlug = require('tplink-smartplug-node');

let tp = new TPLinkSmartPlug("192.168.1.100");

tp.turnOn().then(resp => {
    // resp should be { system: { set_relay_state: { err_code: 0 } } }
});

An example of all methods can be found in test.js.

Methods

TPLinkSmartPlug

constructor(ip)
Creates a new instance of the API. This does not connect to the plug yet.

turnOn()
Turns the plug on. Returns a promise resolving to the reply from the plug.

turnOff()
Turns the plug off. Returns a promise resolving to the reply from the plug.

query()
Queries the state of the plug. Returns a promise resolving to the reply from the plug.

getEmeterRealtime()
Get the readings from the Emeter (only supported on HS110).

raw(query)
Send a raw query object to the plug. A list of valid query objects can be found here.

2.1.0

4 years ago

2.0.1

5 years ago

2.0.0

5 years ago

1.1.0

7 years ago

1.0.0

7 years ago