Skip to content

Instantly share code, notes, and snippets.

@abcsds
Last active May 12, 2018 08:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abcsds/dc84a407a1290ec0438c to your computer and use it in GitHub Desktop.
Save abcsds/dc84a407a1290ec0438c to your computer and use it in GitHub Desktop.
Small snippet to open a serial connection from Julia.
using SerialPorts
s = SerialPort("/dev/ttyACM1", 250000)
write(s, "Hello World!\n")
close(s)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment