-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplusses.py
48 lines (36 loc) · 1.29 KB
/
plusses.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# cirpy_plusses_code.py -- PicoDVI test on Feather RP2040
# 26 Apr 2023 - @todbot / Tod Kurt
# demo at: https://www.youtube.com/live/Gcw8rOYaO8U?feature=share&t=893
import time, random
import board, displayio, vectorio
#############
import picodvi
import framebufferio
displayio.release_displays()
# pin defs for RP2040-PiZero
fb = picodvi.Framebuffer(320, 240,
clk_dp=board.CKP, clk_dn=board.CKN,
red_dp=board.GP26, red_dn=board.GP27,
green_dp=board.GP24, green_dn=board.GP25,
blue_dp=board.GP22, blue_dn=board.GP23,
color_depth=8)
display = framebufferio.FramebufferDisplay(fb, auto_refresh=True)
#############
#display = board.DISPLAY
print("display width, height:", display.width, display.height)
maingroup = displayio.Group()
display.root_group = maingroup
pal = displayio.Palette(2)
pal[0] = 0x00ffff
pal[1] = 0xffff00
wcnt, hcnt = 32, 24 # if we're actually 320x240, this gives us 10 pixel spacing
for i in range(wcnt):
for j in range(hcnt):
x,y = 5 + i * 10, 5 + j * 10 # 10 pixel spacing
c = vectorio.Circle(pixel_shader=pal, color_index=(i%2), radius=5, x=x, y=y)
maingroup.append(c)
while True:
#print("hi")
time.sleep(0.01)
n = random.randint(0,len(display.root_group)-1)
display.root_group[n].hidden = not display.root_group[n].hidden