2008-12-03 05:40:16 +00:00
|
|
|
#ifndef PROGRAMM_H_
|
|
|
|
#define PROGRAMM_H_
|
|
|
|
|
|
|
|
void off();
|
|
|
|
void spirale(unsigned int delay);
|
|
|
|
void joern1();
|
|
|
|
void joern2();
|
|
|
|
void draw_line( unsigned char yabs, signed char delta);
|
|
|
|
void schachbrett(unsigned char times);
|
|
|
|
void test1();
|
|
|
|
void test_level1();
|
|
|
|
void test_level2();
|
|
|
|
void test_level3();
|
|
|
|
void test_levels();
|
|
|
|
void test_palette();
|
2009-02-19 00:54:57 +00:00
|
|
|
void test_palette2();
|
2009-02-26 00:04:45 +00:00
|
|
|
|
|
|
|
// randon dots appear and stay
|
2009-02-25 23:49:59 +00:00
|
|
|
void dots1();
|
2009-02-26 00:04:45 +00:00
|
|
|
|
|
|
|
// dots fly from left to right
|
2009-02-25 23:49:59 +00:00
|
|
|
void flydots();
|
2009-02-26 00:04:45 +00:00
|
|
|
|
|
|
|
// rectangle-pattern
|
2009-02-25 23:49:59 +00:00
|
|
|
void rectangle1();
|
2009-02-26 00:04:45 +00:00
|
|
|
|
|
|
|
// random rectangles
|
2009-02-19 00:54:57 +00:00
|
|
|
void rectangles();
|
2009-02-26 00:04:45 +00:00
|
|
|
|
|
|
|
// lines show and disappear quickly
|
|
|
|
void lines1();
|
|
|
|
|
|
|
|
// 8x8 rectangle with a cross inside
|
2009-02-25 23:49:59 +00:00
|
|
|
void checkbox();
|
2009-02-26 00:04:45 +00:00
|
|
|
|
|
|
|
// a scanner effect with moving h & v lines
|
2009-02-19 00:54:57 +00:00
|
|
|
void movinglines();
|
2009-02-26 00:04:45 +00:00
|
|
|
|
2008-12-03 05:40:16 +00:00
|
|
|
void snake();
|
|
|
|
void matrix();
|
|
|
|
void fadein();
|
|
|
|
void feuer();
|
|
|
|
void random_bright(unsigned cycles);
|
|
|
|
|
|
|
|
#endif /* PROGRAMM_H_ */
|