1
1
mirror of https://github.com/OpenVoiceOS/OpenVoiceOS synced 2024-12-29 10:11:40 +01:00
OpenVoiceOS/buildroot-external/package/xvf3510/xvf3510-stop
j1nx 3403e4a22c Add xvf3510 additional files and scripts from Ake his systemd repo
This is most likely not the way how we would like to do things in
the end, however fine for now to see if we can get the soundcard
working in our image.
2021-04-15 10:57:37 +02:00

26 lines
436 B
Bash
Executable File

#!/bin/bash
function set_all_leds() {
B=$1
i2cset -y 1 0x04 10 $B $B $B 9 $B $B $B 8 $B $B $B i
sleep 0.1
i2cset -y 1 0x04 7 $B $B $B 6 $B $B $B 5 $B $B $B i
sleep 0.1
i2cset -y 1 0x04 4 $B $B $B 3 $B $B $B 2 $B $B $B i
sleep 0.1
i2cset -y 1 0x04 1 $B $B $B 0 $B $B $B i
}
set_all_leds 127
sleep 0.7
set_all_leds 0
sleep 0.7
set_all_leds 63
sleep 0.7
set_all_leds 0
sleep 0.7
set_all_leds 31
sleep 0.7
set_all_leds 0