Skip to content

Instantly share code, notes, and snippets.

View cmcguinness's full-sized avatar

Charles McGuinness cmcguinness

View GitHub Profile
@simonjenny
simonjenny / slideshow.py
Last active August 7, 2024 16:46
Slideshow for Raspberry Pi (or any other Python capable OS)
# -*- coding: utf-8 -*-
import os, pygame, random
pygame.init()
pygame.mouse.set_visible(False)
BACKGROUND = (0,0,0)
INTERVAL = os.getenv('INTERVAL', 60)
IMAGEFOLDER = os.getenv('IMAGEFOLDER', 'images')