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
2018-07-10 19:53:18 +02:00

19 lines
215 B
C

/*
* 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");
}
}