Fix RAMPS + VIKI i2c (#15811)

This commit is contained in:
Axel
2019-11-06 19:52:28 -03:00
committed by Scott Lahteine
parent e6dfc991ae
commit 786617e375
4 changed files with 14 additions and 8 deletions

View File

@ -111,6 +111,12 @@ static void createChar_P(const char c, const byte * const ptr) {
#define LCD_STR_PROGRESS "\x03\x04\x05"
#endif
#if ENABLED(LCD_USE_I2C_BUZZER)
void MarlinUI::buzz(const long duration, const uint16_t freq) {
lcd.buzz(duration, freq);
}
#endif
void MarlinUI::set_custom_characters(const HD44780CharSet screen_charset/*=CHARSET_INFO*/) {
#if NONE(LCD_PROGRESS_BAR, SHOW_BOOTSCREEN)
UNUSED(screen_charset);