Enables support the Cyrillic alphabet for LCD

This commit is contained in:
Sergey Taranenko
2012-10-12 19:06:43 +04:00
parent 24bcc9647d
commit cfc193cdac
4 changed files with 535 additions and 1 deletions

View File

@ -2,7 +2,11 @@
#define ULTRALCD_H
#include "Marlin.h"
#ifdef ULTRA_LCD
#include <LiquidCrystal.h>
#if LANGUAGE_CHOICE == 6
#include "LiquidCrystalRus.h"
#else
#include <LiquidCrystal.h>
#endif
void lcd_status();
void lcd_init();
void lcd_status(const char* message);
@ -12,7 +16,11 @@
#define LCD_UPDATE_INTERVAL 100
#define STATUSTIMEOUT 15000
#if LANGUAGE_CHOICE == 6
extern LiquidCrystalRus lcd;
#else
extern LiquidCrystal lcd;
#endif
extern volatile char buttons; //the last checked buttons in a bit array.
#ifdef NEWPANEL