Merge pull request #230 from aHVzY2g/pr/228

fix pr #228 int float casting & made fillRect 2px smaller
1.2-legacy
Kevin Hester 2020-06-25 11:41:40 -07:00 zatwierdzone przez GitHub
commit 5ea59a1c4d
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,9 +740,9 @@ void Screen::adjustBrightness(){
} else {
brightness++;
}
int width = (brightness / 254) * SCREEN_WIDTH;
int width = brightness / (254.00 / SCREEN_WIDTH);
dispdev.drawRect( 0, 30, SCREEN_WIDTH, 4);
dispdev.fillRect(0, 30, width, 4);
dispdev.fillRect(0, 31, width, 2);
dispdev.display();
dispdev.setBrightness(brightness);
}