diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-03-01 10:19:15 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-03-01 10:19:15 +0100 |
commit | 8f96022464628fe05610bd851317769c396cb4e8 (patch) | |
tree | 9bbc938547324de2ea07e31412d93c46e44e636f /src |
initial commit
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c new file mode 100644 index 0000000..4726e5e --- /dev/null +++ b/src/main.c @@ -0,0 +1,11 @@ +#define PINOUT_BTN (8) + +#define PINOUT_LED_1 (3) +#define PINOUT_LED_2 (5) +#define PINOUT_LED_3 (4) +#define PINOUT_LED_4 (6) +const unsigned short leds[] = {PINOUT_LED_1, PINOUT_LED_2, PINOUT_LED_3, PINOUT_LED_4}; + +int main() { + return 0; +} |