UNPKG

pxt-common-packages

Version:
19 lines (15 loc) 368 B
namespace pxsim { export class ToggleState { constructor (private pin: Pin) { } toggle() { const on = !!this.pin.value; this.pin.setValue(on ? 0 : 1023); } on() { return this.pin.value > 0; } } export interface ToggleStateConstructor { (pin: Pin): ToggleState; } }