aboutsummaryrefslogtreecommitdiff
path: root/rootfs/bin/helloled
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2024-02-06 13:57:43 +0100
committerlonkaars <loek@pipeframe.xyz>2024-02-06 13:57:43 +0100
commit86b1f0ef352205029457cc75e525f86aa70239e5 (patch)
treee356eb20edc24c4ab10eede5270e348f9e00e4cd /rootfs/bin/helloled
parenta9ef380662da3efa382017ff8423f1a894b31bfd (diff)
fix env vars + sysfs + led demoweek4
Diffstat (limited to 'rootfs/bin/helloled')
-rwxr-xr-xrootfs/bin/helloled9
1 files changed, 9 insertions, 0 deletions
diff --git a/rootfs/bin/helloled b/rootfs/bin/helloled
new file mode 100755
index 0000000..877faab
--- /dev/null
+++ b/rootfs/bin/helloled
@@ -0,0 +1,9 @@
+#!/bin/sh
+BRIGHTNESS=0
+while true ; do
+ BRIGHTNESS=$(( ( $BRIGHTNESS + 1 ) % 2 ))
+ for i in $(seq 0 3) ; do
+ echo $BRIGHTNESS > "/sys/class/leds/beaglebone:green:usr$i/brightness"
+ done
+ sleep 0.5
+done