42 lines
818 B
C++
42 lines
818 B
C++
/**
|
|
@file sys_led.h
|
|
|
|
@brief Library for system LED control
|
|
|
|
@author Miroslav Pivovarsky
|
|
Contact: miroslav.pivovarsky@gmail.com
|
|
|
|
@bug: no know bug
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <Arduino.h>
|
|
#include "log.h"
|
|
#include "mcu_cfg.h"
|
|
|
|
class Logs;
|
|
|
|
class sys_led {
|
|
private:
|
|
uint8_t pin; ///< pin number for system LED
|
|
uint32_t time; ///< speed blinking time system LED
|
|
uint32_t ledOnDuration; ///< duration of LED on
|
|
Logs *log; ///< pointer to log class
|
|
|
|
public:
|
|
sys_led(uint8_t, uint32_t);
|
|
sys_led(uint8_t, uint32_t, Logs *);
|
|
~sys_led(){};
|
|
|
|
void init();
|
|
void toggle();
|
|
void set(bool);
|
|
bool get();
|
|
void setTimer(uint32_t);
|
|
uint32_t getTimer();
|
|
};
|
|
|
|
extern sys_led system_led;
|
|
|
|
/* EOF */ |