23 lines
275 B
C
23 lines
275 B
C
/*
|
|
* Test.c
|
|
*
|
|
* Created: 29.09.2013 21:48:26
|
|
* Author: netz
|
|
*/
|
|
|
|
#define F_CPU 20000000
|
|
|
|
#include <avr/io.h>
|
|
#include <util/delay.h>
|
|
|
|
|
|
|
|
int main(void)
|
|
{
|
|
DDRD |= (1<<PIND6);
|
|
while(1)
|
|
{
|
|
PORTD ^= (1<<PIND6);
|
|
_delay_ms(100);
|
|
}
|
|
} |