feat: Populate repo

This commit is contained in:
2023-03-29 14:02:05 +02:00
commit 28bec5ebb8
168 changed files with 17860 additions and 0 deletions

10
include/gpio.h Normal file
View File

@@ -0,0 +1,10 @@
#ifndef GPIO_H
#define GPIO_H
#include <stdlib.h>
void set_pin(char* pin, int state);
void init_pin(char* pin, char* direction);
#endif