您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

15 行
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);