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

72 lines
1.5 KiB
C
Raw Normal View History

2018-07-10 19:52:25 +02:00
/*
* GccApplication1.c
*
* Created: 10.07.2018 19:39:28
* Author : dozed
*/
2018-07-10 20:33:21 +02:00
#define button1 1234
#define button2 5678
#define button3 whatever
2018-07-10 19:52:25 +02:00
2018-07-10 20:33:21 +02:00
typedef enum {CLOCK_INIT = 0, CLOCK_IDLE} clock_state_e;
clock_state_e clock_state = CLOCK_INIT;
clock_state_e clock_new_state = CLOCK_INIT;
int counter = 0; //the counter variable that is being set by the interrupt
2018-07-10 19:52:25 +02:00
int main(void)
{
2018-07-10 20:33:21 +02:00
//-----------INIT----------------
//SETUP PINS (needs to be done)
//attach interrupt (needs to be done)
//-----------END INIT------------
while (1)
{
timer_state = timer_new_state;
switch(clock_state){
case CLOCK_INIT:
//do some init stuff...
lcd.init(); //I know, it's just c but I don't care
//INIT done -> change to IDLE
clock_new_state = CLOCK_IDLE;
break;
case CLOCK_IDLE:
//IDLE MODE
//print the IDLE Screen
lcd.goto(0,0);
lcd.print(counter /*do some claculations*/);
lcd.goto(0,1);
lcd.print("< current time >");
//check buttons
if(button_pressed(1)){
//do something
}
else if(button_pressed(2){
//do something
}
else if(button_pressed(3)){
//do something
}
2018-07-10 19:52:25 +02:00
}
2018-07-10 20:33:21 +02:00
//do some other stuff (like checking if an alarm has been triggered)
}
}
bool button_pressed(int button_number)
{
bool button_state = /*check the state of the button here*/;
return(button_state);
2018-07-10 19:52:25 +02:00
}