Adapted to new hardware
[wakeup.git] / test / wakeupsequence
1 #!/bin/bash
2
3 #  Create a sequence of light colors for test purposes.
4 #  The sequence is red - green - blue - white.
5
6 PATH=$PATH:../src
7 export LD_LIBRARY_PATH=/usr/local/lib
8
9 FADETIME=200
10
11 lightcontrol -r 100 -f $FADETIME
12 lightcontrol -g 100 -f $FADETIME
13 lightcontrol -w 100 -f $FADETIME
14 sleep 600
15 lightcontrol -r 0 -g 0 -w 0 -f $FADETIME
16