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.

debug.sh 1.0KB

1234567891011121314151617181920212223242526272829303132333435
  1. #!/bin/bash
  2. # ----------------------------------------------------------------------------
  3. # Copyright (c) 2023 Thomas Buck (thomas@xythobuz.de)
  4. #
  5. # This program is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation, either version 3 of the License, or
  8. # (at your option) any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # See <http://www.gnu.org/licenses/>.
  16. # ----------------------------------------------------------------------------
  17. set -euo pipefail
  18. SERIAL=/dev/serial/by-id/usb-xythobuz_VolcanoRC_*
  19. echo -n Waiting for serial port to appear
  20. until [ -e $SERIAL ]
  21. do
  22. echo -n .
  23. sleep 1
  24. done
  25. echo
  26. echo Opening picocom terminal
  27. echo "[C-a] [C-x] to exit"
  28. echo
  29. picocom -q --omap crcrlf --imap lfcrlf $SERIAL