23 lines
305 B
C
23 lines
305 B
C
/*
|
|
* peripheral.h
|
|
*
|
|
* Created: 07.05.2014 14:02:16
|
|
* Author: netz
|
|
*/
|
|
|
|
|
|
#ifndef PERIPHERAL_H_
|
|
#define PERIPHERAL_H_
|
|
|
|
#include "io/portd.hpp"
|
|
|
|
#include "io/Led.hpp"
|
|
typedef Led<
|
|
avrlib::portd, //LED an PORTD
|
|
PIND7, //Rot
|
|
PIND6 //Grün
|
|
> ledclass;
|
|
|
|
|
|
|
|
#endif /* PERIPHERAL_H_ */ |