1
0
Files
MSE-CSEL/src/03-led-controller/led.h
2026-04-25 11:43:43 +02:00

15 lines
363 B
C

#ifndef CSEL_WORKSPACE_LED_H
#define CSEL_WORKSPACE_LED_H
#define GPIO_EXPORT "/sys/class/gpio/export"
#define GPIO_UNEXPORT "/sys/class/gpio/unexport"
#define GPIO_LED "/sys/class/gpio/gpio10"
#define LED "10"
int led_open(const char* gpio_path, const char* pin);
void led_on(int led);
void led_off(int led);
#endif //CSEL_WORKSPACE_LED_H