Avryp is a Python package to build and flash AVR and Arduino code.
Avryp needs AVR tools to work, you can install them by running the following command.
sudo apt-get install avr-libc avrdude binutils-avr gcc-avr
Avryp is on PyPI so installing it is easy with pip.
sudo pip install avryp
Examples can be found in the examples directory.
Avryp reads ~/.avryprc for binaries and Arduino library path.
If not given, the default values are the following:
#[arduino]
#haa = /path/to/hardware/arduino/avr/ #no default, but optional
[binaries]
avrdude = avrdude
avrdude_progtype = linuxgpio
avrobjcopy = avr-objcopy
avrsize = avr-size
avrgcc = avr-gcc
avrgpp = avr-g++
This project is licensed under the MIT License - see the LICENSE file for details