26 lines
181 B
C
26 lines
181 B
C
/*
|
|
* MIC-Week3.c
|
|
*
|
|
* Created: 23-2-2016 10:18:35
|
|
* Author : kenny
|
|
*/
|
|
|
|
#include <avr/io.h>
|
|
|
|
|
|
int main(void)
|
|
{
|
|
opgave1();
|
|
|
|
return 1;
|
|
}
|
|
|
|
void opgave1()
|
|
{
|
|
while(1)
|
|
{
|
|
|
|
}
|
|
}
|
|
|