We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8b73118 + 407c2bb commit 035a677Copy full SHA for 035a677
CircuitPython_DVI_Hello_World/code.py
@@ -26,15 +26,15 @@
26
27
# check for DVI Feather
28
if 'CKP' in dir(board):
29
- fb = picodvi.Framebuffer(640, 480,
+ fb = picodvi.Framebuffer(320, 240,
30
clk_dp=board.CKP, clk_dn=board.CKN,
31
red_dp=board.D0P, red_dn=board.D0N,
32
green_dp=board.D1P, green_dn=board.D1N,
33
blue_dp=board.D2P, blue_dn=board.D2N,
34
color_depth=8)
35
# otherwise assume Pico
36
else:
37
38
clk_dp=board.GP12, clk_dn=board.GP13,
39
red_dp=board.GP10, red_dn=board.GP11,
40
green_dp=board.GP8, green_dn=board.GP9,
0 commit comments