You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
274 B

import clock_pillow
from framebuffer import Framebuffer
import time
def main():
fb = Framebuffer()
while True:
img = clock_pillow.draw_clock(pixelformat="RGB", aliasing=4)
fb.show(img)
time.sleep(0.1)
if __name__ == "__main__":
main()