Page MenuHomec4science

led.h
No OneTemporary

File Metadata

Created
Thu, Jun 27, 04:04
#ifndef __LED_H
#define __LED_H
#include "../main.h"
/** @defgroup LED Driver / LED
* @brief Driver to control a LEDs row.
*
* Call led_Init() first in the initialization code. Then, call led_Set() to
* set the LEDs ON or OFF.
*
* @addtogroup LED
* @{
*/
void led_Init(void);
float32_t led_Get(int ledIndex);
void led_Set(int ledIndex, float32_t brightness);
/**
* @}
*/
#endif

Event Timeline