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

updated wifidog (1.1.5 -> 1.3.0)
author Hans-G?nter Theisgen
date Mon Nov 04 11:16:52 2019 +0100 (2019-11-04)
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