stm32f103
All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
led.h
Go to the documentation of this file.
1 #ifndef STM32F103_LIB_LED_H_
2 #define STM32F103_LIB_LED_H_
3 
4 #include <cstdint>
5 #include <memory>
6 #include <stm32f10x.h>
7 
8 #include "config.h"
9 #include "gpio.h"
10 #include "util.h"
11 
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
15 
19 class Led {
20  public:
24  struct Config {
28  uint8_t id;
32  bool polarity = false;
33  };
34 
43  explicit Led(const Config& config);
44 
50  void SetEnable(const bool flag);
54  void Switch();
55 
56  protected:
60  Pin* GetPin() { return &pin_; }
61 
65  GPIO* GetGpio() { return gpio_.get(); }
66 
67  private:
68  bool polarity_;
69  Pin pin_;
70  std::unique_ptr<GPIO> gpio_;
71 };
72 
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.