您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112
  1. #!/bin/bash
  2. # Allo-GG
  3. # Ouverture de la porte
  4. # Port GPIO 4 OFF (port physique 7)
  5. gpio -g write 4 0
  6. # Temporisation de 4 secondes
  7. sleep 4
  8. # Port GPIO 4 ON (port physique 7)
  9. gpio -g write 4 1