2012-06-02 20:44:17 +02:00
|
|
|
#ifndef ULTRALCD_H
|
|
|
|
#define ULTRALCD_H
|
2012-11-06 12:06:41 +01:00
|
|
|
|
2011-12-04 12:40:18 +01:00
|
|
|
#include "Marlin.h"
|
2012-11-06 12:06:41 +01:00
|
|
|
|
2011-11-15 22:50:43 +01:00
|
|
|
#ifdef ULTRA_LCD
|
2015-02-16 13:53:58 +01:00
|
|
|
int lcd_strlen(char *s);
|
|
|
|
int lcd_strlen_P(const char *s);
|
2012-12-03 12:52:00 +01:00
|
|
|
void lcd_update();
|
|
|
|
void lcd_init();
|
|
|
|
void lcd_setstatus(const char* message);
|
|
|
|
void lcd_setstatuspgm(const char* message);
|
|
|
|
void lcd_setalertstatuspgm(const char* message);
|
2012-12-12 11:47:03 +01:00
|
|
|
void lcd_reset_alert_level();
|
2014-03-03 22:01:27 +01:00
|
|
|
bool lcd_detected(void);
|
2013-07-14 10:28:26 +02:00
|
|
|
|
|
|
|
#ifdef DOGLCD
|
|
|
|
extern int lcd_contrast;
|
|
|
|
void lcd_setcontrast(uint8_t value);
|
|
|
|
#endif
|
|
|
|
|
2014-02-17 14:04:44 +01:00
|
|
|
static unsigned char blink = 0; // Variable for visualization of fan rotation in GLCD
|
2012-12-03 12:52:00 +01:00
|
|
|
|
|
|
|
#define LCD_MESSAGEPGM(x) lcd_setstatuspgm(PSTR(x))
|
|
|
|
#define LCD_ALERTMESSAGEPGM(x) lcd_setalertstatuspgm(PSTR(x))
|
|
|
|
|
|
|
|
#define LCD_UPDATE_INTERVAL 100
|
|
|
|
#define LCD_TIMEOUT_TO_STATUS 15000
|
|
|
|
|
2012-12-12 11:47:03 +01:00
|
|
|
#ifdef ULTIPANEL
|
|
|
|
void lcd_buttons_update();
|
2013-07-14 15:35:54 +02:00
|
|
|
extern volatile uint8_t buttons; //the last checked buttons in a bit array.
|
|
|
|
#ifdef REPRAPWORLD_KEYPAD
|
2014-02-17 14:04:44 +01:00
|
|
|
extern volatile uint8_t buttons_reprapworld_keypad; // to store the keypad shift register values
|
2013-07-14 15:35:54 +02:00
|
|
|
#endif
|
2012-12-12 11:47:03 +01:00
|
|
|
#else
|
|
|
|
FORCE_INLINE void lcd_buttons_update() {}
|
|
|
|
#endif
|
2012-12-03 12:52:00 +01:00
|
|
|
|
|
|
|
extern int plaPreheatHotendTemp;
|
|
|
|
extern int plaPreheatHPBTemp;
|
|
|
|
extern int plaPreheatFanSpeed;
|
|
|
|
|
|
|
|
extern int absPreheatHotendTemp;
|
|
|
|
extern int absPreheatHPBTemp;
|
|
|
|
extern int absPreheatFanSpeed;
|
2014-06-12 18:43:16 +02:00
|
|
|
|
2014-06-30 15:12:13 +02:00
|
|
|
extern bool cancel_heatup;
|
2014-11-11 04:43:58 +01:00
|
|
|
|
|
|
|
#ifdef FILAMENT_LCD_DISPLAY
|
|
|
|
extern unsigned long message_millis;
|
|
|
|
#endif
|
2015-01-10 03:16:56 +01:00
|
|
|
|
2013-06-07 00:49:25 +02:00
|
|
|
void lcd_buzz(long duration,uint16_t freq);
|
|
|
|
bool lcd_clicked();
|
2012-08-22 00:46:10 +02:00
|
|
|
|
2014-11-25 01:56:37 +01:00
|
|
|
void lcd_ignore_click(bool b=true);
|
|
|
|
|
2013-07-14 15:35:54 +02:00
|
|
|
#ifdef NEWPANEL
|
2015-03-14 12:28:22 +01:00
|
|
|
#define EN_C BIT(BLEN_C)
|
|
|
|
#define EN_B BIT(BLEN_B)
|
|
|
|
#define EN_A BIT(BLEN_A)
|
2013-07-14 15:35:54 +02:00
|
|
|
|
|
|
|
#define LCD_CLICKED (buttons&EN_C)
|
|
|
|
#ifdef REPRAPWORLD_KEYPAD
|
2015-03-14 12:28:22 +01:00
|
|
|
#define EN_REPRAPWORLD_KEYPAD_F3 BIT(BLEN_REPRAPWORLD_KEYPAD_F3)
|
|
|
|
#define EN_REPRAPWORLD_KEYPAD_F2 BIT(BLEN_REPRAPWORLD_KEYPAD_F2)
|
|
|
|
#define EN_REPRAPWORLD_KEYPAD_F1 BIT(BLEN_REPRAPWORLD_KEYPAD_F1)
|
|
|
|
#define EN_REPRAPWORLD_KEYPAD_UP BIT(BLEN_REPRAPWORLD_KEYPAD_UP)
|
|
|
|
#define EN_REPRAPWORLD_KEYPAD_RIGHT BIT(BLEN_REPRAPWORLD_KEYPAD_RIGHT)
|
|
|
|
#define EN_REPRAPWORLD_KEYPAD_MIDDLE BIT(BLEN_REPRAPWORLD_KEYPAD_MIDDLE)
|
|
|
|
#define EN_REPRAPWORLD_KEYPAD_DOWN BIT(BLEN_REPRAPWORLD_KEYPAD_DOWN)
|
|
|
|
#define EN_REPRAPWORLD_KEYPAD_LEFT BIT(BLEN_REPRAPWORLD_KEYPAD_LEFT)
|
2013-07-14 15:35:54 +02:00
|
|
|
|
|
|
|
#define LCD_CLICKED ((buttons&EN_C) || (buttons_reprapworld_keypad&EN_REPRAPWORLD_KEYPAD_F1))
|
|
|
|
#define REPRAPWORLD_KEYPAD_MOVE_Z_UP (buttons_reprapworld_keypad&EN_REPRAPWORLD_KEYPAD_F2)
|
|
|
|
#define REPRAPWORLD_KEYPAD_MOVE_Z_DOWN (buttons_reprapworld_keypad&EN_REPRAPWORLD_KEYPAD_F3)
|
|
|
|
#define REPRAPWORLD_KEYPAD_MOVE_X_LEFT (buttons_reprapworld_keypad&EN_REPRAPWORLD_KEYPAD_LEFT)
|
|
|
|
#define REPRAPWORLD_KEYPAD_MOVE_X_RIGHT (buttons_reprapworld_keypad&EN_REPRAPWORLD_KEYPAD_RIGHT)
|
|
|
|
#define REPRAPWORLD_KEYPAD_MOVE_Y_DOWN (buttons_reprapworld_keypad&EN_REPRAPWORLD_KEYPAD_DOWN)
|
|
|
|
#define REPRAPWORLD_KEYPAD_MOVE_Y_UP (buttons_reprapworld_keypad&EN_REPRAPWORLD_KEYPAD_UP)
|
|
|
|
#define REPRAPWORLD_KEYPAD_MOVE_HOME (buttons_reprapworld_keypad&EN_REPRAPWORLD_KEYPAD_MIDDLE)
|
|
|
|
#endif //REPRAPWORLD_KEYPAD
|
|
|
|
#else
|
2014-02-17 14:04:44 +01:00
|
|
|
//atomic, do not change
|
2015-03-14 12:28:22 +01:00
|
|
|
#define B_LE BIT(BL_LE)
|
|
|
|
#define B_UP BIT(BL_UP)
|
|
|
|
#define B_MI BIT(BL_MI)
|
|
|
|
#define B_DW BIT(BL_DW)
|
|
|
|
#define B_RI BIT(BL_RI)
|
|
|
|
#define B_ST BIT(BL_ST)
|
|
|
|
#define EN_B BIT(BLEN_B)
|
|
|
|
#define EN_A BIT(BLEN_A)
|
2013-07-14 15:35:54 +02:00
|
|
|
|
|
|
|
#define LCD_CLICKED ((buttons&B_MI)||(buttons&B_ST))
|
|
|
|
#endif//NEWPANEL
|
|
|
|
|
2014-02-17 14:04:44 +01:00
|
|
|
#else //no LCD
|
2012-12-03 12:52:00 +01:00
|
|
|
FORCE_INLINE void lcd_update() {}
|
|
|
|
FORCE_INLINE void lcd_init() {}
|
|
|
|
FORCE_INLINE void lcd_setstatus(const char* message) {}
|
|
|
|
FORCE_INLINE void lcd_buttons_update() {}
|
2012-12-12 11:47:03 +01:00
|
|
|
FORCE_INLINE void lcd_reset_alert_level() {}
|
2013-06-07 00:49:25 +02:00
|
|
|
FORCE_INLINE void lcd_buzz(long duration,uint16_t freq) {}
|
2014-03-03 22:01:27 +01:00
|
|
|
FORCE_INLINE bool lcd_detected(void) { return true; }
|
2012-12-03 12:52:00 +01:00
|
|
|
|
|
|
|
#define LCD_MESSAGEPGM(x)
|
|
|
|
#define LCD_ALERTMESSAGEPGM(x)
|
2014-12-18 16:03:40 +01:00
|
|
|
|
|
|
|
#endif //ULTRA_LCD
|
2012-12-03 12:52:00 +01:00
|
|
|
|
2011-12-22 16:43:28 +01:00
|
|
|
char *itostr2(const uint8_t &x);
|
|
|
|
char *itostr31(const int &xx);
|
|
|
|
char *itostr3(const int &xx);
|
2012-12-12 11:47:03 +01:00
|
|
|
char *itostr3left(const int &xx);
|
2011-12-22 16:43:28 +01:00
|
|
|
char *itostr4(const int &xx);
|
2012-11-06 12:06:41 +01:00
|
|
|
|
2012-12-03 12:52:00 +01:00
|
|
|
char *ftostr3(const float &x);
|
2013-03-19 20:13:23 +01:00
|
|
|
char *ftostr31ns(const float &x); // float to string without sign character
|
2012-12-03 12:52:00 +01:00
|
|
|
char *ftostr31(const float &x);
|
|
|
|
char *ftostr32(const float &x);
|
2014-12-29 02:43:14 +01:00
|
|
|
char *ftostr43(const float &x);
|
2014-11-11 04:43:58 +01:00
|
|
|
char *ftostr12ns(const float &x);
|
2014-12-23 02:11:35 +01:00
|
|
|
char *ftostr32sp(const float &x); // remove zero-padding from ftostr32
|
2012-12-12 11:47:03 +01:00
|
|
|
char *ftostr5(const float &x);
|
2012-12-03 12:52:00 +01:00
|
|
|
char *ftostr51(const float &x);
|
|
|
|
char *ftostr52(const float &x);
|
2012-11-06 12:06:41 +01:00
|
|
|
|
2014-12-18 16:03:40 +01:00
|
|
|
#endif //ULTRALCD_H
|