Skip to content

Instantly share code, notes, and snippets.

@abcsds
Last active May 12, 2018 08:11
Show Gist options
  • 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