Raspberry Pi PiLite Countdown Python Example

Publié le: 07 août 2013
sur la chaîne: David Rogers
1,633
6

First bit of messing around with Python on the Raspberry Pi with the excellent PiLite from Ciseco (http://shop.ciseco.co.uk/), but something that I found out about through Kickstarter http://www.kickstarter.com/projects/c...

The LEDs themselves are bright, and I could have done with a filter on my camera.

I have found the messing around with Python a bit of a pain to begin with but it has been easy to get something up and running quickly.
You do need some careful use of the sleep function especially when loading graphics as the baudrate is relatively low.

countdown.py

#!/usr/bin/env python

import serial, time
#import datetime
#datetime.datetime.now().time()

s= serial.Serial()
s.baudrate = 9600
s.timeout = 0
s.port = "/dev/ttyAMA0"

try:
s.open()
except serial.SerialException, e:
sys.stderr.write("could not open port &r: %s\n" % (port, e))
sys.exit(1)

s.write("$$$ALL,OFF\r")
time.sleep(0.5)
while True:
for i in range (0,10):
k = 10 - i
s.write("%d" %k)
time.sleep(1)
s.write("$$$F111111111100010001011101110000000000000000110000101001000011110
000000000000000111000001000000000111011000000100100001011111110\r")
time.sleep(5)
s.write("$$$ALL,OFF\r")


Sur cette page du site, vous pouvez voir la vidéo en ligne Raspberry Pi PiLite Countdown Python Example durée heure minute seconde en bonne qualité , qui a été Téléchargé par l'utilisateur David Rogers 07 août 2013, Partagez le lien avec vos amis et connaissances, sur youtube cette vidéo a déjà été regardée 1,633 fois et il a aimé 6 téléspectateurs. Bon visionnage!