1 #ifndef STM32F103_LIB_LED_H_
2 #define STM32F103_LIB_LED_H_
12 #if !defined(LIB_USE_LED) || LIB_USE_LED < 1
13 #error "This configuration is not specified to use this library"
14 #endif // !defined(LIB_USE_LED) || LIB_USE_LED < 1
70 std::unique_ptr<GPIO> gpio_;
73 #endif // STM32F103_LIB_LED_H_
void SetEnable(const bool flag)
std::pair< GPIO_TypeDef *, uint16_t > Pin
Type definition for a single pin.
Definition: util.h:16
Configuration for LED.
Definition: led.h:24
Implements LED-related features.
Definition: led.h:19
uint8_t id
ID of LED.
Definition: led.h:28
GPIO * GetGpio()
Definition: led.h:65
void Switch()
Switches the state of the LED.
Pin * GetPin()
Definition: led.h:60
HAL implementation for GPIO pins.
Definition: gpio.h:12
bool polarity
If true, LED is assumed to be active low.
Definition: led.h:32
Led(const Config &config)
Constructor for LED.