15#include "freertos/FreeRTOS.h"
16#include "freertos/task.h"
17#include "driver/gpio.h"
void ledOff(Led *led)
ledOff will set low the instance of the led
Definition: led.c:44
void ledInit(Led *led)
Led initialization for any led.
Definition: led.c:19
state_t
led.h
Definition: led.h:44
@ LED_ON
Definition: led.h:46
@ LED_OFF
Definition: led.h:45
void ledAllOff(Led *led, int size)
Definition: led.c:49
void ledOn(Led *led)
ledOn will set high the instance of the led
Definition: led.c:32
This is a custom library for easy use of Led without the struggle of doing all the hardware intializa...
Definition: led.h:63
gpio_num_t gpio
Definition: led.h:64
state_t state
Definition: led.h:65