- Added simple test image script

master
Steve Clement 2015-03-08 19:45:30 +01:00
parent df023432cf
commit 55601d1d06
1 changed files with 28 additions and 0 deletions

28
testImage.py Executable file
View File

@ -0,0 +1,28 @@
#!/usr/bin/env python
import Image
import ImageDraw
import time
from rgbmatrix import Adafruit_RGBmatrix
# Rows and chain length are both required parameters:
matrix = Adafruit_RGBmatrix(32, 3)
# 24-bit RGB scrolling example.
# The adafruit.png image has a couple columns of black pixels at
# the right edge, so erasing after the scrolled image isn't necessary.
matrix.Clear()
image = Image.open("../images/100px-LightOn.svg.png")
image.load()
for n in range(32, -image.size[0], -1):
matrix.SetImage(image.im.id, n, 1)
time.sleep(0.025)
matrix.Clear()
image = Image.open("../images/100px-LightOff.svg.png")
image.load()
for n in range(32, -image.size[0], -1):
matrix.SetImage(image.im.id, n, 1)
time.sleep(0.025)
matrix.Clear()