make putche echo on hdmi display

This commit is contained in:
Jeff Epler 2023-06-10 16:36:44 -05:00
parent b217211737
commit 4de9363e81

View file

@ -515,7 +515,7 @@ uint8 _getch(void) {
uint8 _getche(void) {
uint8 ch = _getch();
Serial.write(ch);
_putch(ch);
return(ch);
}