Interface DigitalSignal

Active Digital Signal subscription

interface DigitalSignal {
    pulse: () => void;
    value: boolean;
}

Properties

Properties

pulse: () => void

Pulse the signal.

value: boolean

$state of current value of the signal. Set to write value to control system.