25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

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