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

24 lines
287 B
C

/*
* AtTiny_alarm_clock.c
*
* Created: 16.07.2018 13:55:13
* Author : dozed
*/
#include <avr/io.h>
#include "lcd4.h"
int main(void)
{
DDRB = 0xff;
lcd_init();
lcd_write(here, "t", 0);
/* Replace with your application code */
while (1)
{
PORTB = 0xAA;
}
}