Add LED-Blitz

This commit is contained in:
BlubbFish 2018-09-06 20:16:42 +00:00
parent 12ea0d64af
commit 27f21e510f

View File

@ -11,14 +11,14 @@
#define LED3 0b00000100
#define LED4 0b00001000
#define BLACK 0
#define RED 1
#define GREEN 2
#define YELLOW 3
#define BLUE 4
#define MAGENTA 5
#define CYAN 6
#define WHITE 7
#define BLACK 0 0b0000
#define RED 1 0b0001
#define GREEN 2 0b0010
#define YELLOW 3 0b0011
#define BLUE 4 0b0100
#define MAGENTA 5 0b0101
#define CYAN 6 0b0110
#define WHITE 7 0b0111
#include <avr/io.h>
#include <util/delay.h>