S&B Volcano vaporizer remote control with Pi Pico W
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.

copy.sh 235B

12345678910111213141516
  1. #!/bin/bash
  2. if [ $# -ne 0 ] ; then
  3. cat << EOF | rshell
  4. cp flow.py /pyboard
  5. cp poll.py /pyboard
  6. cp scan.py /pyboard
  7. cp $1 /pyboard/main.py
  8. EOF
  9. else
  10. cat << EOF | rshell
  11. cp flow.py /pyboard
  12. cp poll.py /pyboard
  13. cp scan.py /pyboard
  14. EOF
  15. fi