arduino

January 13, 2022 ยท View on GitHub

This repository is boilerplate for anyone that wants to develop for the Arduino using C or V.

Getting started

Make sure you have following installed: make avr-gcc avr-libc avrdude. Then run following:

git clone https://github.com/knarkzel/arduino
cd arduino/

For developing using C:

cd c/
make

For developing using V:

cd v/
make

For flashing, do following

make flash

Here are some useful links for developing on the Arduino using C or V: