Dovgalyuk / QuadCalc

Arduino-based calculator displaying bin/oct/dec/hex representations of argument and result simultaneously

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

QuadCalc

Arduino-based calculator displaying bin/oct/dec/hex versions of argument and result simultaneously

Schematic: https://github.com/Dovgalyuk/QuadCalc/blob/master/pcb-avr/pcb.pdf

Flashing

Read low fuse bits into file low:

sudo avrdude -p m2560 -c usbtiny -U lfuse:r:low:r

Write low fuse bits from file low. It should contain single FF byte:

sudo avrdude -p m2560 -c usbtiny -U lfuse:w:low:r

Write high fuse bits from file high. It should contain single D8 byte:

sudo avrdude -p m2560 -c usbtiny -U hfuse:w:high:r

Write the firmware image:

sudo avrdude -p m2560 -c usbtiny -U flash:w:calc.ino.hex:i

Links

About

Arduino-based calculator displaying bin/oct/dec/hex representations of argument and result simultaneously


Languages

Language:C++ 100.0%