/* Autor: Ján Sučan * * Zdrojove kody, ich casti a subory z nich vzniknute priamo alebo nepriamo * (objektove subory, Intel Hex, ...) prosim nepouzivajte komercne, ani ako * sucast komercnych diel. Vsetky ostatne pripady pouzitia su dovolene. * * Please don't use the source codes, their parts and files created from them * directly or indirectly, (object files, Intel Hex files, ...) for commercial * purposes, not even as a part of commercial products. All other use cases * are allowed. */ #ifndef BUTTON_H_ #define BUTTON_H_ #include bool button_is_pressed(void); bool button_is_released(void); void button_wait_for_press(void); void button_wait_for_release(void); #endif /* BUTTON_H_ */