mirror of
https://gitee.com/dashuaibran/jyker
synced 2025-11-04 13:29:41 +08:00
16 lines
198 B
C++
16 lines
198 B
C++
#ifndef CTRL_STEP_FW_LED_STM32_H
|
|
#define CTRL_STEP_FW_LED_STM32_H
|
|
|
|
#include "led_base.h"
|
|
|
|
|
|
class Led :public LedBase
|
|
{
|
|
|
|
private:
|
|
void SetLedState(uint8_t _id, bool _state) override;
|
|
|
|
};
|
|
|
|
#endif
|