Kiibohd Controller
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

easyMode.bash 284B

123456789101112131415161718
  1. #!/usr/bin/env bash
  2. # Just in case there was an extra ledTest.bash (don't care if error)
  3. rm /dev/ttyACM0
  4. ./swdLoad.bash kiibohd_manufacturing_2014-11-16.bin 0
  5. echo "Press CTRL+C to Continue"
  6. while true; do
  7. sleep 1
  8. if [ -e /dev/ttyACM0 ]; then
  9. ./ledTest.bash
  10. fi
  11. done
  12. exit 0