当前位置:   article > 正文

基于GEC6818的嵌入式智能系统设计[开关灯/消消乐小游戏/蓝牙通信]_基于gec6818开发板的智能家居控制系统的设计

基于gec6818开发板的智能家居控制系统的设计

一、主要功能

进入主界面后,主界面是个人UI设计,有四个功能按钮模块,分别是:信息、灯光、娱乐(消消乐)、蓝牙。

二、涉及知识

C语言,文件io,bmp/jpg图片解析,Linux串口通信,linux基础

三、开发环境

嵌入式开发板型号GEC6818,开发平台Ubuntu18.04,代码编辑器source insight 4.0

四、主要模块

1.LCD显示模块

        通过open打开开发板LCD屏幕驱动,驱动文件(/dev/fb0),进行屏幕初始化。

  1. /***************************************
  2. 显示屏相关的一些功能函数
  3. ***************************************/
  4. #include "lcd.h"
  5. static int * plcd=NULL;
  6. static int lcd_fp=-1;
  7. #define LCD_PATH "/dev/fb0" //文件路径
  8. /*
  9. lcd屏幕初始化
  10. */
  11. int lcd_Init(void)
  12. {
  13. lcd_fp=open(LCD_PATH,O_RDWR);
  14. if(lcd_fp==-1)
  15. {
  16. perror("open failed:");
  17. return -1;
  18. }
  19. plcd=mmap(NULL,LCD_HEIGHT*LCD_WIDTH*4,PROT_WRITE|PROT_READ,MAP_SHARED,lcd_fp,0);
  20. if(plcd == MAP_FAILED)
  21. {
  22. perror("MMAP Failed");
  23. return -1;
  24. }
  25. return 0;
  26. }

        开发板是通过像素打点的形式显示图片,于是需要封装一个像素打点函数

  1. /*
  2. 像素打点函数
  3. */
  4. void Lcd_Draw_Point(int x,int y,int color)
  5. {
  6. *(plcd + LCD_WIDTH*y + x) = color;
  7. }

        然后通过系统IO(read)和标准IO(fread)读取bmp及jpg图片像素数据。其中jpg文件为压缩文件需先进行解压缩操作,通过write写入屏幕驱动里面。具体操作需要将模块封装成函数Display_Bmp(),以便调用。对JPEG图片的显示通过jpeglib库实现,具体函数已封装为Display_Jpg()。因本工程所使用的素材皆为jpg图片,故这里只放出jpg显示函数。

  1. #include "jpg.h"
  2. /***************************************
  3. 跟JPG图片显示相关的功能模块(函数)
  4. ***************************************/
  5. /*
  6. 将jpgpath所指向的JPG图片显示到屏幕的(x0,y0)处
  7. 成功显示返回0,失败返回-1
  8. */
  9. int Display_Jpg(int x,int y,const char *jpgpath)
  10. {
  11. struct jpeg_decompress_struct dinfo; //定义一个解压对象
  12. struct jpeg_error_mgr jerr; //定义一个出错信息的对象
  13. dinfo.err = jpeg_std_error(&jerr);
  14. jpeg_create_decompress(&dinfo);
  15. //用标准IO打开JPG图片
  16. FILE *infile = fopen(jpgpath,"r");
  17. if(infile == NULL)
  18. {
  19. perror("Fopen JPG Failed");
  20. return -1;
  21. }
  22. jpeg_stdio_src(&dinfo,infile);
  23. jpeg_read_header(&dinfo,TRUE);
  24. jpeg_start_decompress(&dinfo);
  25. unsigned char *buffer = malloc(dinfo.output_width * dinfo.output_components);
  26. unsigned char a = 0,r,g,b;
  27. unsigned int color;
  28. int i = 0;
  29. //output_scanline保存的是当前已经扫描了多少行,初始化为0
  30. while(dinfo.output_scanline < dinfo.output_height)
  31. {
  32. i = 0;
  33. //第一个参数表示解压对象
  34. //第二个参数表示保存解压后数据的二级指针
  35. //第三个参数表示读取多少行数据来进行解压
  36. jpeg_read_scanlines(&dinfo,&buffer,1);
  37. //每扫描一行output_scanline + 1
  38. int j = 0;
  39. for(j = 0;j < dinfo.output_width;j++)
  40. {
  41. if(dinfo.output_components == 4)
  42. {
  43. a = buffer[i++];
  44. }
  45. r = buffer[i++];
  46. g = buffer[i++];
  47. b = buffer[i++];
  48. color = (a << 24) | (r << 16) | (g << 8) | b;
  49. Lcd_Draw_Point(x+j,y+dinfo.output_scanline-1,color);
  50. }
  51. }
  52. jpeg_finish_decompress(&dinfo);
  53. jpeg_destroy_decompress(&dinfo);
  54. free(buffer);
  55. fclose(infile);
  56. return 0;
  57. }

主系统显示效果

2.触摸屏模块

        打开触摸屏的驱动文件 /dev/input/event0,然后调用read从触摸文件读取触摸信息,通过判断触摸坐标来确定触摸点位置,从而使能相关按键

  1. #include "touch.h"
  2. #include "main.h"
  3. /***************************************
  4. 跟触摸屏相关的一些功能函数
  5. ***************************************/
  6. int Get_Touch(void)
  7. {
  8. //打开触摸屏文件
  9. int fd_touch = open(TOUCH_PATH,O_RDWR);
  10. if(fd_touch == -1)
  11. {
  12. perror("open touch file failed:");
  13. return -1;
  14. }
  15. int ret;
  16. struct input_event ev;
  17. int Tx=0,Ty=0,Lx=0,Ly=0;
  18. int x = -1,y = -1,z=-1,i=1,j=3;
  19. while(1)
  20. {
  21. ret = read(fd_touch,&ev,sizeof(ev));
  22. if(ret != sizeof(ev))
  23. {
  24. continue;
  25. }
  26. if(ev.type == EV_ABS && ev.code == ABS_X)
  27. {
  28. //x轴的坐标输入事件
  29. x = ev.value;
  30. }
  31. else if(ev.type == EV_ABS && ev.code == ABS_Y)
  32. {
  33. //y轴的坐标输入事件
  34. y = ev.value;
  35. }
  36. if(j!=0)
  37. {
  38. j--;
  39. continue;
  40. }
  41. if (i)
  42. {
  43. if(x >= 0 && y >= 0 && ev.value != 0)
  44. {
  45. //printf("Touch Point [ %d %d ]\n",x,y);
  46. Tx=x*800/1024;
  47. Ty=y*480/600;
  48. printf("-------------------------");
  49. printf("Touch Point [ %d %d ]\n",Tx,Ty);
  50. i--;
  51. }
  52. }
  53. else if(ev.type == EV_KEY && ev.code == BTN_TOUCH && ev.value == 0)
  54. {
  55. //手指离开了屏幕
  56. //printf("Leave Point [ %d %d ]\n",x,y);
  57. Lx=x*800/1024;
  58. Ly=y*480/600;
  59. printf("-------------------------");
  60. printf("Leave Point [ %d %d ]\n",Lx,Ly);
  61. i=1;
  62. j=3;
  63. }
  64. if(abs(Lx-Tx)<200 && abs(Ly-Ty)<200 && Tx>=200 && Tx<620 && Ty>=30 && Ty<450)//交互判断
  65. {
  66. panduan(Tx,Ty,Lx,Ly);
  67. Tx=0;
  68. Ty=0;
  69. Lx=0;
  70. Ly=0;
  71. }
  72. if(Tx>=650&&Ty>=300&&Ty<=360)//new game
  73. {
  74. map_interface();
  75. }
  76. if(Tx>=650&&Ty>=390&&Ty<=450)//quit game
  77. {
  78. //Display_Jpg(0,0,PATH_quitgame);
  79. printf("游戏结束\n");
  80. key();
  81. }
  82. }
  83. return 0;
  84. }

3.串口通信

        由于本项目中需要用到蓝牙模块与开发板通信从而操控响应相关功能按键,所以需要进行串口初始化。串口相关代码如下:

  1. #include "Uart.h"
  2. int Uart_Init(const char * uart_name)
  3. {
  4. /*设置串口
  5. 波特率:9600
  6. 数据位:8
  7. 校验位:不要
  8. 停止位:1
  9. 数据流控制:无
  10. */
  11. int uart_fd= open(uart_name, O_RDWR);//打开串口1设备文件
  12. if (uart_fd == -1)
  13. {
  14. perror("open error:");
  15. return -1;
  16. }
  17. struct termios myserial;
  18. //清空结构体
  19. memset(&myserial, 0, sizeof (myserial));
  20. //O_RDWR
  21. myserial.c_cflag |= (CLOCAL | CREAD);
  22. //设置控制模式状态,本地连接,接受使能
  23. //设置 数据位
  24. myserial.c_cflag &= ~CSIZE; //清空数据位
  25. myserial.c_cflag &= ~CRTSCTS; //无硬件流控制
  26. myserial.c_cflag |= CS8; //数据位:8
  27. myserial.c_cflag &= ~CSTOPB;// //1位停止位
  28. myserial.c_cflag &= ~PARENB; //不要校验
  29. cfsetospeed(&myserial, B9600); //设置波特率,B9600是定义的宏
  30. cfsetispeed(&myserial, B9600);
  31. /* 刷新输出队列,清除正接受的数据 */
  32. tcflush(uart_fd, TCIFLUSH);
  33. /* 改变配置 */
  34. tcsetattr(uart_fd, TCSANOW, &myserial);
  35. return uart_fd;
  36. }

4.游戏模块(消消乐)

        消消乐小游戏的设计核心

        (1)游戏开始界面设计

         (2)随机游戏界面生成(二维数组)

  1. #include "game.h"
  2. /***************************************
  3. 项目相关的主逻辑函数
  4. ***************************************/
  5. int xxl[7][7]; //全局变量,地图数组
  6. int xiao[7][7]={0}; //全局变量,地图标志数组
  7. int count=0; //全局变量,判断遍历时的相同个数
  8. int direction; //全局变量,用于记录方向
  9. int fangxiang; //全局变量,用于记录判断的方向
  10. int score; //全局变量,用于记录游戏得分
  11. /*
  12. 用来产生随机数,随机数的范围是[0,num-1]
  13. */
  14. int Get_Random(int num)//生成随机数,形参用于控制随机数范围[0,num]
  15. {
  16. int x=random()%num;
  17. return x;
  18. }
  19. int map_interface(void)//生成随机界面
  20. {
  21. /*
  22. */
  23. //用来设置随机数种子
  24. srandom(time(NULL));
  25. score=0;
  26. int i,j,k;
  27. char JPG_PATH[30];
  28. printf("游戏开始!\n");
  29. for(i=0;i<7;i++)
  30. {
  31. for(j=0;j<7;j++)
  32. {
  33. xxl[i][j]=Get_Random(7); //随机数组赋值
  34. k=xxl[i][j];
  35. switch (k)
  36. {
  37. case 0:strcpy(JPG_PATH,JPG_PATH0);
  38. break;
  39. case 1:strcpy(JPG_PATH,JPG_PATH1);
  40. break;
  41. case 2:strcpy(JPG_PATH,JPG_PATH2);
  42. break;
  43. case 3:strcpy(JPG_PATH,JPG_PATH3);
  44. break;
  45. case 4:strcpy(JPG_PATH,JPG_PATH4);
  46. break;
  47. case 5:strcpy(JPG_PATH,JPG_PATH5);
  48. break;
  49. case 6:strcpy(JPG_PATH,JPG_PATH6);
  50. break;
  51. default:return 0 ;
  52. break;
  53. }
  54. Display_Jpg(i*60+60+140,j*60+60-30,JPG_PATH);//显示游戏界面图片
  55. }
  56. Display_Jpg(650,300,PATH_newgame);//显示重新开始按钮
  57. Display_Jpg(650,390,PATH_quit);//显示游戏结束按钮
  58. Display_Jpg(630,30,SCORE_PATH);//显示分数框图
  59. Display_Jpg(740,45,PATH0);//初始化分数0
  60. }
  61. return 0;
  62. }

        (3)通过触摸屏判断用户滑动方向实现消消乐元素交换

  1. /*
  2. 获取从触摸板获取的坐标
  3. 换算成二维数组坐标以及用户滑动方向
  4. */
  5. int panduan(int Tx,int Ty,int Lx,int Ly)
  6. {
  7. int Ti,Tj,Li,Lj;
  8. Ti=(Tx-200)/60; //获取二维数组坐标
  9. Tj=(Ty-30)/60;
  10. if(Lx-Tx>15) //判断方向
  11. {
  12. Li=Ti+1;
  13. fangxiang='r'; //右
  14. }
  15. else if(Lx-Tx<-15)
  16. {
  17. Li=Ti-1;
  18. fangxiang='l'; //左
  19. }
  20. else
  21. {
  22. Li=Ti;
  23. }
  24. if(Ly-Ty>15)
  25. {
  26. Lj=Tj+1;
  27. fangxiang='d'; //下
  28. }
  29. else if(Ly-Ty<-15)
  30. {
  31. Lj=Tj-1;
  32. fangxiang='u'; //上
  33. }
  34. else
  35. {
  36. Lj=Tj;
  37. }
  38. if((xxl[Ti][Tj]==-1)||(xxl[Li][Lj]==-1)||(xxl[Ti][Tj]==xxl[Li][Lj]))//起始点与离开点对应数组元素不能相同,并且不能为被消元素
  39. {return 0;}
  40. if((Ti!=Li && Tj!=Lj)|| abs(Ti-Li)>1 || abs(Tj-Lj)>1 ||Li>6 ||Lj>6)//起始点与离开点不能是同一点
  41. {
  42. return 0;
  43. }
  44. else
  45. {
  46. map2(Ti,Tj,Li,Lj);
  47. }
  48. }

        (4)交换后判断是否可消,可消则执行可消操作,否则执行交换元素复原

  1. int map_updatax(void)
  2. {
  3. int i,j,k;
  4. for(j=0;j<7;j++)
  5. {
  6. for(i=0;i<7;i++)
  7. {
  8. if(traverse_map(i,j,0,0)==0)//不能消
  9. {
  10. continue;
  11. }
  12. else//可消
  13. {
  14. map4();//标记
  15. usleep(250000);
  16. map3();//重显
  17. //usleep(100000);
  18. map_updata();//掉落更新
  19. }
  20. }
  21. }
  22. }
  23. int map_updata(void)//消了以后地图更新
  24. {
  25. int i,j,flag=0;
  26. for(j=0;j<7;j++)
  27. {
  28. for(i=0;i<7;i++)
  29. {
  30. if((xxl[i][j]==-1)&&j!=0)//若该元素为被消除元素则与上一行进行互换
  31. {
  32. map_restore(i,j,i,j-1);
  33. flag=1;
  34. }
  35. if((xxl[i][j]==-1)&&j==0)//若该元素为顶层元素则随机产生新的图片
  36. {
  37. xxl[i][j]=Get_Random(7);//给随机数
  38. flag=1;
  39. }
  40. }
  41. }
  42. if(flag==0)//找不到被消除元素则结束递归
  43. {
  44. return 0;
  45. }
  46. map3();
  47. map_updata();//递归调用本身重复遍历是否还有被消除元素
  48. return 0;
  49. }

 5.控制模块(用于总系统界面控制判定)

  1. #include "Key.h"
  2. int game(void)
  3. {
  4. //LCD屏幕的初始化
  5. lcd_Init();
  6. //清屏
  7. Init_color(white);
  8. //获取BMP图片
  9. //Display_Bmp(0,0,BMP_PATH);
  10. //获取JPG图片
  11. Display_Jpg(0,0,JPG_PATHx);
  12. while(1)
  13. {
  14. if(Get_Touchx()==1)
  15. {
  16. break;
  17. }
  18. }
  19. //生成背景图片
  20. Display_Jpg(0,0,JPG_PATHb);
  21. //生成随机游戏界面
  22. map_interface();
  23. /*
  24. 触摸信息相关函数
  25. */
  26. Get_Touch();
  27. //LCD屏幕的解初始化
  28. Lcd_Uinit();
  29. return 0;
  30. }
  31. int key(void)
  32. {
  33. Display_Jpg(0,0,PATH_system);
  34. while(1)
  35. {
  36. switch (Get_Touchs())//选择进入不同模块
  37. {
  38. case 2: //娱乐
  39. game();
  40. break;
  41. case 1://灯光
  42. led();
  43. break;
  44. case 4://蓝牙
  45. bluetooth();
  46. break;
  47. default:return 0;
  48. break;
  49. }
  50. }
  51. return 0;
  52. }
  53. int bluetooth(void)
  54. {
  55. Display_Jpg(0,0,PATH_system);
  56. Display_Jpg(580,315,PATH_blutooth);
  57. printf("蓝牙模式!\n");
  58. unsigned char readbuf[256]={0};
  59. int uart1_fd = Uart_Init("/dev/ttySAC1");
  60. while(1)
  61. {
  62. int r = read(uart1_fd,readbuf,256);
  63. if(!strcmp(readbuf,"灯光"))//灯光模块
  64. {
  65. puts(readbuf);
  66. led_init();
  67. while(1)
  68. {
  69. read(uart1_fd,readbuf,256);
  70. if(strcmp(readbuf,"开灯"))
  71. {
  72. led_bluetooth(1);
  73. }
  74. else if(strcmp(readbuf,"关灯"))
  75. {
  76. led_bluetooth(0);
  77. }
  78. if(!strcmp(readbuf,"退出灯光"))
  79. {
  80. printf("退出灯光\n");
  81. bluetooth();
  82. }
  83. }
  84. }
  85. if(!strcmp(readbuf,"娱乐"))//娱乐模块
  86. {
  87. game();
  88. }
  89. if(!strcmp(readbuf,"退出蓝牙"))
  90. {
  91. key();
  92. }
  93. }
  94. close(uart1_fd);
  95. return 0;
  96. }

五、效果图展示

      

完整工程文件下载地址:https://download.csdn.net/download/weixin_56681901/21614333

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/神奇cpp/article/detail/855458
推荐阅读
  

闽ICP备14008679号