UNPKG

thermostat-pi-dht

Version:

A Node.js framework (standalone app + lib) to control a heating system with a Raspberry Pi using DHT11 or DHT22/AM2302 sensors and GPIO actuators.

10 lines (9 loc) 234 B
/// <reference types="node" /> export interface ThermostatSetpointUpdateOptions { host: string; port: number; hmacKey: Buffer; thermostatName: string; setpoint: number; endpoint: 'data.json' | 'config.json'; }