UNPKG

rainbird

Version:

The Rainbird library allows you to access your RainBird Controller.

11 lines 292 B
import { Buffer } from 'node:buffer'; import { Request } from './Request.js'; export class IrrigationStateRequest extends Request { get type() { return 0x48; } toBuffer() { return Buffer.from([this.type]); } } //# sourceMappingURL=IrrigationStateRequest.js.map