/* * AtTiny_alarm_clock.c * * Created: 16.07.2018 13:55:13 * Author : dozed */ #include int main(void) { DDRB = 0xff; /* Replace with your application code */ while (1) { PORTB = 0xAA; } }