scripts-reco

Des scripts pour faciliter le reconditionnement de portables - retour accueil

git clone git://bebou.netlib.re/scripts-reco

Log | Files | Refs | README |

commit c44814fdd19a7aa4752311f33a5f5554305fedd7
parent a1d0297a4c3b67cb28afad08690107010aee368c
Auteurice: Arthur Pons <arthur.pons@unistra.fr>
Date:   Tue, 18 Mar 2025 14:59:36 +0100

Proposition de test pour les leds

Dépend beaucoup du modèle, il faut donc tester

Diffstat:
Atests/leds | 15+++++++++++++++
1 file changed, 15 insertions(+), 0 deletions(-)

diff --git a/tests/leds b/tests/leds @@ -0,0 +1,15 @@ +# LED +path=/sys/class/leds + +for led in input0::capslock hp::hddprotect;do + informer "La led $led va clignoter" + max=$(cat $path/$led/max_brightness) + cur=$(cat $path/$led/brightness) + for i in seq 10;do + sudo sh -c 'printf "$1" > $2/$3/brightness' -- "$max" "$path" "$led" + sleep 0.1 + sudo sh -c 'printf "$1" > $2/$3/brightness' -- "0" "$path" "$led" + done + sudo sh -c 'printf "$1" > $2/$3/brightness' -- "$cur" "$path" "$led" +done +