From the picture above, choose the correct statement below
Led matrix is instructed by microcontroller Wemos D1 Mini by using Thonny language
Led matrix is instructed by microcontroller Wemos D1 Mini by using micropython language written in Thonny IDE
Wemos D1 Mini understand the language and then transferred to led matrix.
which statement below are correct. Choose more than one correct answer.
Wemos D1 Mini has digital and analog pins that we may use directly. How many are they?
9 digital pins 1 analog pin
10 digital pins 1 analog pin
12 digital pins 1 analog pin
8x8 led matrix has total 64 leds (known as pixel) that individually addressed. From the picture above, from left to right, what is the address of the each red pixel?
(7,0),(1,2),(5,4),(1,7),(7,7)
(0,7),(2,1),(5,4),(1,7),(7,7)
(0,7),(2,1),(4,5),(7,1),(7,7)
type the correct syntax to draw the pixel as seen on the picture ........ display.show()
type the correct syntax to draw the pixel as seen on the picture ........ display.show()
type the correct syntax to draw the pixel as seen on the picture ........ display.show()
type the correct syntax to draw the pixel as seen on the picture ........ display.show()
type the correct syntax to draw the pixel as seen on the picture ........ display.show()
type the correct syntax to draw the pixel as seen on the picture ........ display.show()
Fill in the blank
for i in _____(8):     display.vline(0,7,7,0,1)     display.show()
choose the correct syntax for infinite loop (=forever loop)
while true     display.hline(0,0,8,1)     display.show()
While true:     display.hline(0,0,8,1)     display.show()
while True:     display.hline(0,0,8,1)     display.show()