From 9cae661571f7f01ea937b48af245cd19de1e8459 Mon Sep 17 00:00:00 2001 From: ollo Date: Thu, 6 Dec 2018 21:06:28 +0100 Subject: [PATCH] Described flashing --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 62f9c1e..2f06198 100644 --- a/README.md +++ b/README.md @@ -6,3 +6,20 @@ Another tiny project to control a WS2812 stripe via an Arduino based microcontro * Atmega8 * 75 WS2812LEDs * USB Serial converter + +Programmer, e.g.: +* AVRISPmkii + +## Software +In order to flash the software, select the following settings in Arduino: +* Tools | Board "Arduino NG or older" +* Tools | Processor "Atmega8" + +The flashing itself is done with **avrdude**: +```bash +avrdude -c AVRISPmkii -p m8 -u -U flash:w:SideboardLED.ino.standard.hex +``` +Initial once the fuses must be burned: +```bash +avrdude -c avrispmkii -p atmega8 -U lfuse:w:0xee:m -U hfuse:w:0xd9:m -U efuse:w:0xfc:m +```