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.

15 lines
268 B

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <time.h>
  4. #include <unistd.h>
  5. #include <wiringPi.h>
  6. #include "spilcd.h"
  7. uint8 random_color_r(int seed);
  8. uint8 random_color_g(int seed);
  9. uint8 random_color_b(int seed);
  10. lcd_t* demo_init();
  11. void demo_deinit(lcd_t* lcd);