UNPKG

amaran-light-cli

Version:

Command line tool for controlling Aputure Amaran lights via WebSocket to a local Amaran desktop app.

28 lines 2.11 kB
export { addStandardOptions, commandCallbackPromise, getLightDevices, isLightDevice, runDeviceAction, } from './commands/cmdUtils.js'; export { registerAutoCct } from './commands/daylightSimulation/autoCct.js'; export { registerGraphSchedule } from './commands/daylightSimulation/graphSchedule.js'; export { registerPrintSchedule } from './commands/daylightSimulation/printSchedule.js'; export { registerSchedule } from './commands/daylightSimulation/schedule.js'; export { registerService } from './commands/daylightSimulation/service.js'; export { registerSimulateSchedule } from './commands/daylightSimulation/simulateSchedule.js'; export { registerWeather } from './commands/daylightSimulation/weather.js'; export { registerCct } from './commands/deviceControl/cct.js'; export { registerColor } from './commands/deviceControl/color.js'; export { default as registerConfig } from './commands/deviceControl/config.js'; export { registerDiscover } from './commands/deviceControl/discover.js'; export { registerEffect } from './commands/deviceControl/effect.js'; export { registerFan } from './commands/deviceControl/fan.js'; export { registerGroup } from './commands/deviceControl/group.js'; export { registerHsi } from './commands/deviceControl/hsi.js'; export { registerInfo } from './commands/deviceControl/info.js'; export { registerIntensity } from './commands/deviceControl/intensity.js'; export { registerList } from './commands/deviceControl/list.js'; export { registerPower } from './commands/deviceControl/power.js'; export { registerPreset } from './commands/deviceControl/preset.js'; export { registerQuickshot } from './commands/deviceControl/quickshot.js'; export { registerScene } from './commands/deviceControl/scene.js'; export { registerStatus } from './commands/deviceControl/status.js'; export { escapeXmlText, parseBooleanString, parseCloudCover, parseStrictInteger, parseStrictNumber, } from './commands/parseUtils.js'; export { registerCommands } from './commands.js'; export type { CommandDeps, CommandOptions } from './deviceControl/types.js'; //# sourceMappingURL=commands-api.d.ts.map