mirror of
https://github.com/Wessel/c-websocket-server.git
synced 2026-06-06 07:15:42 +02:00
11 lines
140 B
C
11 lines
140 B
C
#ifndef GPIO_H
|
|
#define GPIO_H
|
|
|
|
#include <stdlib.h>
|
|
|
|
void set_pin(char* pin, int state);
|
|
void init_pin(char* pin, char* direction);
|
|
|
|
#endif
|
|
|