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.

28 lines 1.75 kB
"use strict"; // Project: thermostat-pi-dht // File: index.ts // // Copyright 2021 Henning Kerstan // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. Object.defineProperty(exports, "__esModule", { value: true }); exports.getRemoteThermostatData = exports.updateRemoteThermostatSetpoint = exports.ThermostatSetpoint = exports.Thermostat = void 0; var Thermostat_1 = require("./Thermostat"); Object.defineProperty(exports, "Thermostat", { enumerable: true, get: function () { return Thermostat_1.Thermostat; } }); var ThermostatSetpoint_1 = require("./ThermostatSetpoint"); Object.defineProperty(exports, "ThermostatSetpoint", { enumerable: true, get: function () { return ThermostatSetpoint_1.ThermostatSetpoint; } }); var updateRemoteThermostatSetpoint_1 = require("./updateRemoteThermostatSetpoint"); Object.defineProperty(exports, "updateRemoteThermostatSetpoint", { enumerable: true, get: function () { return updateRemoteThermostatSetpoint_1.updateRemoteThermostatSetpoint; } }); var getRemoteThermostatData_1 = require("./getRemoteThermostatData"); Object.defineProperty(exports, "getRemoteThermostatData", { enumerable: true, get: function () { return getRemoteThermostatData_1.getRemoteThermostatData; } }); //# sourceMappingURL=index.js.map