This repository has been archived on 2022-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
AtTiny_alarm_clock/main.c

20 lines
215 B
C
Raw Normal View History

2018-07-10 19:52:25 +02:00
/*
* GccApplication1.c
*
* Created: 10.07.2018 19:39:28
* Author : dozed
*/
#include <avr/io.h>
int main(void)
{
/* Replace with your application code */
while (1)
{
printf("test");
}
}