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.

8 lines (7 loc) 268 B
/** Setpoint temperature for a thermostat. */ export declare class ThermostatSetpoint { /** A string to uniquely identify a thermostat. */ name?: string; /** The desired temperature (in °C) to be maintained by the thermostat. */ setpoint?: number; }