Raspberry Pi - Display and Output
Given the following Python code snippet for an SSD1306 OLED display, what will be the visible output on the screen?
oled.fill(0)
oled.text('Hi', 0, 0)
oled.show()oled.fill(0)
oled.text('Hi', 0, 0)
oled.show()fill(0), then 'Hi' is drawn at coordinates (0,0).show() updates the display.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions