mirror of
https://gitee.com/peng_zhihui/HoloCubic
synced 2025-11-04 21:19:40 +08:00
21 lines
211 B
C++
21 lines
211 B
C++
#ifndef DISPLAY_H
|
|
#define DISPLAY_H
|
|
|
|
#include <lvgl.h>
|
|
|
|
#define LCD_BL_PIN 5
|
|
#define LCD_BL_PWM_CHANNEL 0
|
|
|
|
|
|
class Display
|
|
{
|
|
private:
|
|
|
|
|
|
public:
|
|
void init();
|
|
void routine();
|
|
void setBackLight(float);
|
|
};
|
|
|
|
#endif |