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.

13 satır
261B

  1. #!/bin/bash
  2. TASTER_PIN="2"
  3. # setup
  4. echo "Setup taster on pin $TASTER_PIN"
  5. echo $TASTER_PIN > /sys/class/gpio/export
  6. echo "in" > /sys/class/gpio/gpio$TASTER_PIN/direction
  7. while true; do
  8. echo -e "Taster sagt: "
  9. cat /sys/class/gpio/gpio$TASTER_PIN/value
  10. done