Update lcd.c

pull/7/head
Sylaina 6 years ago committed by GitHub
parent 9e96e2cb7f
commit 59fcdf520a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -197,7 +197,9 @@ void lcd_putc(char c){
break; break;
default: default:
// mapping char // mapping char
//c=getCharPosition(c); if (c < ' ') {
break;
}
c -= ' '; c -= ' ';
if (c >= pgm_read_byte(&special_char[0][1]) ) { if (c >= pgm_read_byte(&special_char[0][1]) ) {
c = 0xff; c = 0xff;

Loading…
Cancel
Save