Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

haier-ac-remote

bstuff72MIT0.1.2TypeScript support: included

A node module remote controller for Haier air conditioner

haier, ac, air, conditioner, smart, home, remote

readme

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();