#include "digital.h"

const char shift_table[] = {
    0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80,
};

Output<1> led;

int main() {
    while (1) {
        led.on();
        //Time::sleep(1000);
        led.off();
        //Time::sleep(1000);
    }
}
