Skip to content

Latest commit

 

History

History
27 lines (15 loc) · 550 Bytes

File metadata and controls

27 lines (15 loc) · 550 Bytes

Arduino Scripts

===== Scripts used to program Arduino without using the IDE

WRITING NEW SKETCH

Every Sketch needs a dedicated working directory!

Copy Makefile in the working directory

The Makefile must be modified according the Arduino's hw owned (See utility/boards.txt)

ARDUINO SYNTAX ON VIM

mkdir -p ~/.vim/syntax/
cp utility/arduino.vim ~/.vim/syntax/
echo "autocmd! BufNewFile,BufRead *.pde setlocal ft=arduino" >> ~/.vimrc

Useful Sketches