You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
264 B
C

#pragma once
enum pom_state {
STOPPED,
RUNNING,
PAUSED
};
enum pom_state current_pom_state;
bool pom_visible;
short poms_completed;
short pom_current_secs;
uint32_t pom_second_start;
void draw_pom(void);
void count_pom(void);
uint8_t test_function(void);