pcb and initial code from https://github.com/das-labor/borgware-2d.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
389 B
25 lines
389 B
#ifndef PROGRAMM_H_
|
|
#define PROGRAMM_H_
|
|
|
|
void test_level(unsigned char level);
|
|
void test_palette();
|
|
void test_palette2();
|
|
|
|
#ifdef ANIMATION_OFF
|
|
inline static void off()
|
|
{
|
|
clear_screen(0);
|
|
|
|
while(1)
|
|
wait(100);
|
|
|
|
}
|
|
#endif
|
|
|
|
void spirale(unsigned int delay);
|
|
void joern1();
|
|
void schachbrett(unsigned char times);
|
|
void feuer();
|
|
void random_bright(unsigned cycles);
|
|
|
|
#endif /* PROGRAMM_H_ */
|
|
|