/*
 * Led Blicking.c
 *
 * Created: 20.01.2016 16:10:48
 * Author : Forastero
 */ 

#define F_CPU 8000000
#include <avr/io.h>
#include <util/delay.h>

void init(void)
{
	DDRB = 0b00000001;
	PORTB = 0x00;
}


int main(void)
{
	init();
	
    /* Replace with your application code */
    while (1) 
    {
		PORTB = 0b00000001;
		_delay_ms(1000);
		PORTB = 0x00;
		_delay_ms(1000);
    }
}

