wok diff python-rpi-pyglow/stuff/pyglow @ rev 16522

Add raspberrypi-vc, raspberrypi-boot, raspberrypi-boot-x (full PiCam support and track bootloader file for easy update)
author Christophe Lincoln <pankso@slitaz.org>
date Sat Apr 26 02:04:47 2014 +0200 (2014-04-26)
parents bbfc89f2eaa6
children c03f2c599ef4
line diff
     1.1 --- a/python-rpi-pyglow/stuff/pyglow	Thu Apr 24 03:05:04 2014 +0200
     1.2 +++ b/python-rpi-pyglow/stuff/pyglow	Sat Apr 26 02:04:47 2014 +0200
     1.3 @@ -1,6 +1,6 @@
     1.4  #!/bin/sh
     1.5  #
     1.6 -# Tiny wrapper to Python Pyglow examples
     1.7 +# Tiny wrapper to Python Pimorini (vortex.py) and Pyglow examples
     1.8  #
     1.9  
    1.10  ex="/usr/share/pyglow"
    1.11 @@ -11,16 +11,18 @@
    1.12  fi
    1.13  
    1.14  case "$1" in
    1.15 +	'test') 
    1.16 +		python ${ex}/test.py ;;
    1.17  	cpu) 
    1.18  		python ${ex}/cpu.py ;;
    1.19  	clock) 
    1.20  		python ${ex}/clock.py ;;
    1.21  	set-leds) 
    1.22  		python ${ex}/set_leds.py ;;
    1.23 -	'test') 
    1.24 -		python ${ex}/test.py ;;
    1.25 +	vortex)
    1.26 +		python ${ex}/vortex.py ;;
    1.27  	*) 
    1.28 -		echo "Usage: $(basename $0) [test|cpu|clock|set-leds]" ;;
    1.29 +		echo "Usage: $(basename $0) [test|cpu|clock|set-leds|vortex]" ;;
    1.30  esac
    1.31  
    1.32  exit 0