wok view python-rpi-pyglow/stuff/pyglow @ rev 19294

sane-backends, scons, scrot, shell-fm, smake, soundtouch, wireless_tools: fix man or doc path
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jul 06 16:30:34 2016 +0200 (2016-07-06)
parents 7b9df94be9aa
children
line source
1 #!/bin/sh
2 #
3 # Tiny wrapper to Python Pimorini (vortex.py) and Pyglow examples
4 #
6 ex="/usr/share/pyglow"
8 # Make sure we have i2c-* module loaded
9 if ! lsmod | grep -q 'i2c_dev'; then
10 modprobe i2c-bcm2708
11 modprobe i2c-dev
12 fi
14 case "$1" in
15 'test')
16 python ${ex}/test.py ;;
17 cpu)
18 python ${ex}/cpu.py ;;
19 clock)
20 python ${ex}/clock.py ;;
21 set-leds)
22 python ${ex}/set_leds.py ;;
23 vortex)
24 python ${ex}/vortex.py ;;
25 *)
26 echo "Usage: $(basename $0) [test|cpu|clock|set-leds|vortex]" ;;
27 esac
29 exit 0