node-intellicenter
Version:
NodeJS library for communicating with a Pentair IntelliCenter controller
12 lines (11 loc) • 478 B
TypeScript
import { ICRequest } from "./request.js";
/**
* Requests to change the setpoint of a temperature circuit.
*
* Use the `objnam` of the circuit to be set and give the temperature in the same units that the
* controller is set to (so, give a number in Celsius if the system is in Celsius or Fahrenheit
* if the system is in Fahrenheit).
*
* @returns the object used to issue this request
*/
export declare function SetSetpoint(objnam: string, setpoint: number): ICRequest;