Last active
February 21, 2019 13:01
-
-
Save jessicacarneiro/a3d196690faac7485ed83f6883bcdca5 to your computer and use it in GitHub Desktop.
My bash aliases for Ubuntu working with Arduino stuff
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How to link Relic library using Arduino-Makefile (Mega 2560)?