haier-ac-remote
TypeScript icon, indicating that this package has built-in type declarations

0.1.2 • Public • Published

haier-ac-remote

A node module remote controller for Haier air conditioner.

Usage

$ npm install haier-ac-remote

Examples

Local example

see example here

  1. git clone git@github.com:bstuff/haier-ac-remote.git
  2. cd packages/haier-ac-remote
  3. npm install
  4. Write ip and mac of your haier conditioner in src/examples/index.ts.
  5. Run npm run example
  6. use keyboard keys:
  • w to power on
  • s to power off
  • to increase temperature
  • to decrease temperature

Example usage in other projects

import { HaierAC, Mode } from 'haier-ac-remote';
 
const ac = new HaierAC({
  ip: '192.168.1.23',
  mac: '00:12:34:56:78:AC',
});
 
// turn on
await ac.on();
 
// set mode to heat
await ac.changeState({ mode: Mode.COOL });
 
// set temperature to 23*
await ac.changeState({ targetTemperature: 23 });
 
// turn off
await ac.off();

Package Sidebar

Install

npm i haier-ac-remote

Weekly Downloads

19

Version

0.1.2

License

MIT

Unpacked Size

24.8 kB

Total Files

16

Last publish

Collaborators

  • bstuff