lifxlan
Version:
TypeScript library for controlling LIFX products over LAN
10 lines • 334 B
JavaScript
import * as Encoding from '../encoding.js';
import { Type } from '../constants/index.js';
export function SensorGetAmbientLightCommand() {
return {
type: Type.SensorGetAmbientLight,
decode: Encoding.decodeSensorStateAmbientLight,
defaultResponseMode: 'response',
};
}
//# sourceMappingURL=sensor.js.map