LedI

em.hal/LedI.em
1
2
3
4
5
6
7
8
9
import em from '@$$emscript'
export const $U = em.$declare('INTERFACE')

export interface $I {
    off(): void
    on(): void
    toggle(): void
    wink(msecs: u32): void
}