mirror of
https://github.com/parnic/node-intellicenter.git
synced 2025-06-17 02:21:53 -05:00
Using SubscribeToUpdates() will cause the Unit to trigger a "notify" event any time the subscribed property changes, containing the new value of the property. I don't know how/if you can unsubscribe from something as I don't see the official app ever doing that.
23 lines
982 B
TypeScript
23 lines
982 B
TypeScript
import { GetBodyStatus } from "./body-status.js";
|
|
import { GetChemicalStatus } from "./chem-status.js";
|
|
import { GetSystemConfiguration } from "./configuration.js";
|
|
import { GetHeaters } from "./get-heater.js";
|
|
import { SubscribeToUpdates } from "./notify.js";
|
|
import { GetSchedule } from "./schedule.js";
|
|
import { SetHeatMode } from "./set-heater.js";
|
|
import { SetItemStatus } from "./set-status.js";
|
|
import { SetSetpoint } from "./setpoint.js";
|
|
import { GetSystemInformation } from "./system-info.js";
|
|
export declare const messages: {
|
|
GetBodyStatus: typeof GetBodyStatus;
|
|
GetChemicalStatus: typeof GetChemicalStatus;
|
|
GetHeaters: typeof GetHeaters;
|
|
GetSchedule: typeof GetSchedule;
|
|
GetSystemConfiguration: typeof GetSystemConfiguration;
|
|
GetSystemInformation: typeof GetSystemInformation;
|
|
SetHeatMode: typeof SetHeatMode;
|
|
SetItemStatus: typeof SetItemStatus;
|
|
SetSetpoint: typeof SetSetpoint;
|
|
SubscribeToUpdates: typeof SubscribeToUpdates;
|
|
};
|