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.
12345678910111213141516 |
- #!/bin/bash
-
- if [ $# -ne 0 ] ; then
- cat << EOF | rshell
- cp flow.py /pyboard
- cp poll.py /pyboard
- cp scan.py /pyboard
- cp $1 /pyboard/main.py
- EOF
- else
- cat << EOF | rshell
- cp flow.py /pyboard
- cp poll.py /pyboard
- cp scan.py /pyboard
- EOF
- fi
|