Merge pull request #228 from mrvdb/sh1106-support

Take configured SCREEN_WIDTH into account for brightness bar
1.2-legacy
Kevin Hester 2020-06-25 08:44:34 -07:00 zatwierdzone przez GitHub
commit aeb906414f
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -740,8 +740,8 @@ void Screen::adjustBrightness(){
} else {
brightness++;
}
int width = brightness / 1.984375;
dispdev.drawRect( 0, 30, 128, 4);
int width = (brightness / 254) * SCREEN_WIDTH;
dispdev.drawRect( 0, 30, SCREEN_WIDTH, 4);
dispdev.fillRect(0, 30, width, 4);
dispdev.display();
dispdev.setBrightness(brightness);