2008-12-03 05:40:16 +00:00
|
|
|
#ifndef PROGRAMM_H_
|
|
|
|
#define PROGRAMM_H_
|
|
|
|
|
2011-03-07 01:12:03 +00:00
|
|
|
#include "../pixel.h"
|
|
|
|
#include "../util.h"
|
|
|
|
|
|
|
|
|
2011-02-25 22:57:49 +00:00
|
|
|
void test_level(unsigned char level);
|
2008-12-03 05:40:16 +00:00
|
|
|
void test_palette();
|
2009-02-19 00:54:57 +00:00
|
|
|
void test_palette2();
|
2009-02-26 00:04:45 +00:00
|
|
|
|
2011-02-25 22:57:49 +00:00
|
|
|
#ifdef ANIMATION_OFF
|
|
|
|
inline static void off()
|
|
|
|
{
|
|
|
|
clear_screen(0);
|
2009-02-26 00:04:45 +00:00
|
|
|
|
2011-02-25 22:57:49 +00:00
|
|
|
while(1)
|
|
|
|
wait(100);
|
2009-02-26 00:04:45 +00:00
|
|
|
|
2011-02-25 22:57:49 +00:00
|
|
|
}
|
|
|
|
#endif
|
2009-02-26 00:04:45 +00:00
|
|
|
|
2012-09-08 01:35:32 +00:00
|
|
|
void spiral(int delay);
|
2011-02-25 22:57:49 +00:00
|
|
|
void joern1();
|
2011-11-08 02:46:56 +00:00
|
|
|
void checkerboard(unsigned char times);
|
2011-11-07 22:35:57 +00:00
|
|
|
void fire();
|
2008-12-03 05:40:16 +00:00
|
|
|
void random_bright(unsigned cycles);
|
|
|
|
|
|
|
|
#endif /* PROGRAMM_H_ */
|