Raspberry Pi PiLite Countdown Python Example

Pubblicato il: 07 agosto 2013
sul canale di: 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")


In questa pagina del sito puoi guardare il video online Raspberry Pi PiLite Countdown Python Example della durata di ore minuti seconda in buona qualità , che l'utente ha caricato David Rogers 07 agosto 2013, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 1,633 volte e gli è piaciuto 6 spettatori. Buona visione!