@ginden/blinkstick-v2
Version:
Improved Blickstick API for Node.js
14 lines • 360 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.WaitFrame = void 0;
/**
* Null frame doesn't change the state of the LEDs. It just waits.
* @category Animation
*/
class WaitFrame {
constructor(duration) {
this.duration = duration;
}
}
exports.WaitFrame = WaitFrame;
//# sourceMappingURL=wait-frame.js.map