Created
April 5, 2014 20:13
-
-
Save k2cCreations/9997527 to your computer and use it in GitHub Desktop.
The four lights illuminate green, the inner two turn on, then the outer two, then the outer two turn off, then finally the inner two turn off
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
First enter "shell" without (") | |
Second enter "sudo su" Without (") | |
ectool lightbar seq stop | |
ectool lightbar 4 00 00 00 | |
while : | |
do | |
ectool lightbar 1 00 cc 00 | |
ectool lightbar 2 00 cc 00 | |
sleep 0.2 | |
ectool lightbar 0 00 cc 00 | |
ectool lightbar 3 00 cc 00 | |
sleep 0.2 | |
ectool lightbar 0 00 00 00 | |
ectool lightbar 3 00 00 00 | |
sleep 0.2 | |
ectool lightbar 1 00 00 00 | |
ectool lightbar 2 00 00 00 | |
sleep 0.5 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment