mirror of
https://github.com/parnic/node-intellicenter.git
synced 2025-06-17 02:21:53 -05:00
The API all calls these objects so best to go with the flow. This is a breaking change.
24 lines
731 B
TypeScript
24 lines
731 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 { SetObjectStatus } from "./set-object-status.js";
|
|
import { SetSetpoint } from "./setpoint.js";
|
|
import { GetSystemInformation } from "./system-info.js";
|
|
|
|
export const messages = {
|
|
GetBodyStatus,
|
|
GetChemicalStatus,
|
|
GetHeaters,
|
|
GetSchedule,
|
|
GetSystemConfiguration,
|
|
GetSystemInformation,
|
|
SetHeatMode,
|
|
SetObjectStatus,
|
|
SetSetpoint,
|
|
SubscribeToUpdates,
|
|
};
|