Prusa-Firmware/Firmware/backlight.h

33 lines
705 B
C
Raw Normal View History

2019-10-11 19:06:37 +03:00
//backlight.h
#ifndef _BACKLIGHT_H
#define _BACKLIGHT_H
#include <inttypes.h>
2019-10-18 12:18:43 +03:00
#include "Marlin.h"
#include "pins.h"
2019-10-11 19:06:37 +03:00
2019-10-17 13:11:32 +03:00
enum Backlight_Mode
{
BACKLIGHT_MODE_DIM = 0,
BACKLIGHT_MODE_BRIGHT = 1,
2019-10-17 13:11:32 +03:00
BACKLIGHT_MODE_AUTO = 2,
};
extern int16_t backlightLevel_HIGH;
extern int16_t backlightLevel_LOW;
extern uint8_t backlightMode;
2019-10-16 14:40:45 +03:00
extern bool backlightSupport;
2019-10-18 10:32:41 +03:00
extern int16_t backlightTimer_period;
2019-10-11 19:06:37 +03:00
2019-10-18 12:42:55 +03:00
#define FORCE_BL_ON_START force_bl_on(true)
#define FORCE_BL_ON_END force_bl_on(false)
2019-10-18 12:18:43 +03:00
extern void force_bl_on(bool section_start);
2019-10-11 19:06:37 +03:00
extern void backlight_update();
extern void backlight_init();
2019-10-17 13:11:32 +03:00
extern void backlight_save();
extern void backlight_wake(const uint8_t flashNo = 0);
2019-10-11 19:06:37 +03:00
#endif //_BACKLIGHT_H