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.
 
 
 
 
 
 

29 lines
424 B

#ifndef PROGRAMM_H_
#define PROGRAMM_H_
#include "../pixel.h"
#include "../util.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 spiral(int delay);
void joern1();
void checkerboard(unsigned char times);
void fire();
void random_bright(unsigned cycles);
#endif /* PROGRAMM_H_ */