Skip to content

Commit b556e5c

Browse files
authored
Merge pull request #2 from rainerum-robotics-arduino/develop
Possible fix for #1 uninitalized pixels on screen
2 parents d61f570 + fb4ba47 commit b556e5c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/LcdScreen.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ void LcdScreen::begin() {
4848
#if !defined(ARDUINO_AVR_ROBOT_CONTROL)
4949
setRotation(1);
5050
#endif
51+
background(backgroundColor); // Without this backgroundColor is random pixels?
52+
stroke(strokeColor); // Without this strokeColor is white?
53+
//fill(fillColor); // Maybe not needed?
5154
}
5255

5356
// Arduino Robot library compatibility.

0 commit comments

Comments
 (0)