You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
240 B
Bash
12 lines
240 B
Bash
3 weeks ago
|
#! /bin/bash
|
||
|
|
||
|
LED0=/sys/class/leds/beaglebone:green:usr0
|
||
|
LED1=/sys/class/leds/beaglebone:green:usr1
|
||
|
|
||
|
echo "none" >> $LED0/trigger
|
||
|
echo "1" >> $LED0/brightness
|
||
|
|
||
|
echo "none" >> $LED1/trigger
|
||
|
echo "1" >> $LED1/brightness
|
||
|
echo "script done"
|