Skip to content

Instantly share code, notes, and snippets.

@jessicacarneiro
Last active February 21, 2019 13:01
Show Gist options
  • Select an option

  • Save jessicacarneiro/a3d196690faac7485ed83f6883bcdca5 to your computer and use it in GitHub Desktop.

Select an option

Save jessicacarneiro/a3d196690faac7485ed83f6883bcdca5 to your computer and use it in GitHub Desktop.
My bash aliases for Ubuntu working with Arduino stuff
# open file
alias open='xdg-open'
# reload .bashrc
alias rl='source ~/.bashrc'
# install stuff
alias install='sudo dpkg -i'
# Alias to use todo.sh
alias t='~/Dropbox/todo/todo.sh'
alias ti='~/Dropbox/todo/todo.sh addto inbox.txt'
# to use with Arduino-Makefile https://github.com/sudar/Arduino-Makefile
alias mu='make upload'
alias mm='make monitor'
# to use with this Makefile https://gist.github.com/jessicacarneiro/916179c230ae3e78a393030984304395
alias clean='make -f Makefile.arduino clean'
alias upload='make -f Makefile.arduino upload'
# show serial ports open
alias sl='screen -ls'
# function to close a serial port connection
sk() { screen -X -S "$1" quit; }
@faresmezrag
Copy link

faresmezrag commented Jan 9, 2019

How to link Relic library using Arduino-Makefile (Mega 2560)?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment