You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/bash
- # Allo-GG
- # Ouverture de la porte
-
- # Port GPIO 4 OFF (port physique 7)
- gpio -g write 4 0
-
- # Temporisation de 4 secondes
- sleep 4
-
- # Port GPIO 4 ON (port physique 7)
- gpio -g write 4 1
|