25 lines
404 B
C
25 lines
404 B
C
#ifndef LED_H
|
|
#define LED_H
|
|
|
|
#include <pthread.h>
|
|
|
|
#define GPIO_LED_STATUS "10"
|
|
#define GPIO_LED_POWER "362"
|
|
|
|
typedef enum {
|
|
LED_STATUS, // gpioa.10 --> gpio10
|
|
LED_POWER, // gpiol.10 --> gpio362
|
|
} LED_type;
|
|
|
|
typedef struct {
|
|
int gpio;
|
|
pthread_mutex_t mutex;
|
|
} LED;
|
|
|
|
LED* LED_init(LED_type type);
|
|
void LED_on(LED* led);
|
|
void LED_off(LED* led);
|
|
void LED_toggle(LED* led);
|
|
|
|
#endif //LED_H
|