当前位置:   article > 正文

[ARM+Linux]智能家居项目_基于arm+linux嵌入式智能家居项目

基于arm+linux嵌入式智能家居项目

本次智能家居项目采用的是简单工厂设计模式简化main函数代码,便于阅读。所有控制以及外设的设备都做成一个个对象,分别将命令控制的连成一个控制链表,外设设备做成一个外设设备的链表,这样做是为了方便以后功能模块的添加。其中为了能分别做好控制,我们采用多线程来实现。

指令工厂:

socket、语音控制(由于树莓派只有一个串口,所以我将Wemos D1作为服务器,树莓派作为客户端通过socket连接,实现指令控制)

设备工厂:

   树莓派、语音模块、wemos D1、继电器组、摄像头、火焰传感器、电磁锁、蜂鸣器。

树莓派通过串口连接各语音模块LD2330,检测语音的识别结果,分析语音识别的结果来对家电设备进行控制。树莓派摄像头拍摄到人脸之后通过HTTPS访问翔云平台的人脸识别方案对比照片的base64编码来进行人脸识别开锁。由于语音模块占用了树莓派唯一的串口位,为了保留语音控制,所以,我将Wemos D1做成了服务器,让树莓派变为客户端使用socket和wemos进行连接。wemos通过读取树莓派作为客户端发送过来的数据来控制家电设备,完成了对于树莓派的接口拓展,以便控制更多的设备。

每个模块实现的步骤:

将所有设备和指令模块分别通过链表连接起来,以便于随意添加设备,指令工厂发出指令(通过语音模块----->串口\socket------->网络通信),会创建并进入相应的线程,线程中通过比较设备名来判断发出的指令是什么以及要控制哪个设备,再通过寻找设备名函数来定位设备,从而调用相应封装好的函数来实现相应的功能(我们所写的代码都是在用户态,需要在虚拟文件系统中实现系统调用sys_open,通过sys_call透过虚拟文件系统调动内核从而实现对硬件的控制) 

 mainPro.c

  1. #include <stdlib.h>
  2. #include <stdio.h>
  3. #include <string.h>
  4. #include <unistd.h>
  5. #include <pthread.h>
  6. #include <sys/types.h>
  7. #include <sys/socket.h>
  8. #include <arpa/inet.h>
  9. #include <netinet/in.h>
  10. #include <arpa/inet.h>
  11. #include <unistd.h>
  12. #include <sys/stat.h>
  13. #include <fcntl.h>
  14. #include "contrlDevices.h"
  15. #include "inputCommand.h"
  16. pthread_t voiceThread; //注意:定义线程不使用指针以免空指针异常
  17. pthread_t socketThread; //注意:不建议线程传参(链表头)所以定为全局变量
  18. pthread_t fireThread;
  19. pthread_t cameraThread;
  20. pthread_t clientWemosThread;
  21. struct InputCommander *pCommandHead = NULL;
  22. struct Devices *pdeviceHead = NULL;
  23. struct InputCommander *socketHandler = NULL;
  24. struct InputCommander *clientHandler = NULL;
  25. pthread_mutex_t mutex; //定义互斥量(锁)
  26. //pthread_cond_t cond; //条件
  27. int c_fd; //注意:涉及到多线程不要轻易的去传参
  28. //摄像头相关,改变返回值命名,因为C语言中没有这样的返回值
  29. #define true 1
  30. #define false 0
  31. typedef unsigned int bool;
  32. char buf[1024] = {'\0'};
  33. struct Devices *findDeviceByName(char *name,struct Devices *phead) //查询设备
  34. {
  35. if(phead == NULL){
  36. return NULL;
  37. }
  38. while(phead != NULL){
  39. if(strstr(phead->deviceName,name) != NULL){
  40. return phead;
  41. }
  42. phead = phead->next;
  43. }
  44. return NULL;
  45. }
  46. struct InputCommander *findCommandByName(char *name,struct InputCommander *phead) //查询控制
  47. {
  48. if(phead == NULL){
  49. return NULL;
  50. }
  51. while(phead != NULL){
  52. if(strcmp(phead->commandName,name) == 0){
  53. return phead;
  54. }
  55. phead = phead->next;
  56. }
  57. return NULL;
  58. }
  59. void *voice_thread(void *arg) //语音线程
  60. {
  61. int i = 0;
  62. int nread;
  63. struct InputCommander *voiceHandler = NULL;
  64. struct Devices *deviceTmp = NULL;
  65. voiceHandler = findCommandByName("voice",pCommandHead); //在控制工厂找到语音模块
  66. if(voiceHandler == NULL){
  67. printf("find voiceHandler error\n");
  68. pthread_exit(NULL);
  69. }else{
  70. if(voiceHandler->Init(voiceHandler,NULL,NULL) < 0){ //语音模块初始化
  71. printf("voice init error\n");
  72. pthread_exit(NULL); //退出线程
  73. }else{
  74. printf("%s init success\n",voiceHandler->commandName);
  75. } //语音初始化完成
  76. pthread_mutex_lock(&mutex); //加锁【有待研究】
  77. //为什么加这个锁呢,我的想法是在语音读取一级指令的时候,为了避免其它线程对于 紧接着读取二级指令的干扰
  78. while(1){
  79. memset(voiceHandler->comand,'\0',sizeof(voiceHandler->comand));
  80. nread = voiceHandler->getCommand(voiceHandler); //读取来自语音模块的串口数据
  81. if(nread == 0){
  82. //printf("noData from voice,please say again\n");
  83. }else if(strstr(voiceHandler->comand,"all") != NULL){
  84. printf("close all light\n");
  85. deviceTmp = findDeviceByName("yu",pdeviceHead);
  86. deviceTmp->close(deviceTmp->pinNum);
  87. deviceTmp = findDeviceByName("ke",pdeviceHead);
  88. deviceTmp->close(deviceTmp->pinNum);
  89. deviceTmp = findDeviceByName("chu",pdeviceHead);
  90. deviceTmp->close(deviceTmp->pinNum);
  91. deviceTmp = findDeviceByName("shui",pdeviceHead);
  92. deviceTmp->close(deviceTmp->pinNum);
  93. }
  94. else{
  95. deviceTmp = findDeviceByName(voiceHandler->comand,pdeviceHead);
  96. if(deviceTmp == NULL){
  97. printf("findDeviceByName error\n");
  98. }
  99. else{
  100. printf("findDevice = %s\n",deviceTmp->deviceName);
  101. deviceTmp->deviceInit(deviceTmp->pinNum);
  102. deviceTmp->open(deviceTmp->pinNum);
  103. }
  104. }
  105. }
  106. pthread_mutex_unlock(&mutex); //解锁
  107. }
  108. }
  109. size_t readData1( void *ptr, size_t size, size_t nmemb, void *stream) //cameraContrlPostUrl函数里的回调函数
  110. {
  111. memset(buf,'\0',1024);
  112. strncpy(buf,ptr,1024);
  113. }
  114. char *getBase641(char *picture) //获取照片64流
  115. {
  116. int fd;
  117. int len;
  118. char cmd[256] = {'\0'};
  119. sprintf(cmd,"base64 %s > pictureBase64File",picture); //将照片的64流导入到一个文件中
  120. system(cmd);
  121. fd = open("./pictureBase64File",O_RDWR); //打开有照片64流的文件
  122. len = lseek(fd,0,SEEK_END); //计算文件的大小(巧用lseek光标的移动)
  123. lseek(fd,0,SEEK_SET); //光标回到首位置
  124. char *readBuf = (char *)malloc(len); //如果不是用动态,当我们将这个readBuf指针返回去,则会段错误
  125. read(fd,readBuf,len); //因为,readBuf是局部变量,静态内存,程序一运行完毕,里面的内容被释放(C语言基础)
  126. close(fd);
  127. system("rm ./pictureBase64File");
  128. return readBuf;
  129. }
  130. bool cameraContrlPostUrl() //通过libcurl跨平台网络协议访问翔云人工智能平台人脸识别放案
  131. {
  132. CURL *curl;
  133. CURLcode res;
  134. char *postString;
  135. struct Devices *deviceTmp = NULL;
  136. //翔云人工智能平台人脸识别方案所需要的信息参数
  137. char *img1;
  138. char *img2;
  139. char *key = "9ST43UmYcwtn8ZgWtHaXag";
  140. char *secret = "f87c4f5c3bb94c25b728848b54c637a9";
  141. int typeId = 21;
  142. char *format = "xml";
  143. chdir("/home/pi/mjpg-streamer/mjpg-streamer-experimental"); //改变当前文件路径
  144. system("./start.sh"); //运行摄像头
  145. chdir("/home/pi/yu/smartHome5_camera+face");
  146. system("wget http://172.20.10.2:8080/?action=snapshot -O ./visitor.jpg"); //截图实时视频的照片
  147. img1 = getBase641("./visitor.jpg"); //获取照片64
  148. img2 = getBase641("./tx.jpg");//与之前已经上传好的照片比对
  149. int len = strlen(key)+strlen(secret)+strlen(img1)+strlen(img2)+124;
  150. postString = (char *)malloc(strlen(key)+strlen(secret)+strlen(img1)+strlen(img2)+124);
  151. memset(postString,'\0',len);
  152. sprintf(postString,"&img1=%s&img2=%s&key=%s&secret=%s&typeId=%d&format=%s", //指定post内容,用$符号拼接,下面函数要发送到翔云去对比识别
  153. img1,img2,key,secret,typeId,format);
  154. system("rm visitor.jpg");
  155. curl = curl_easy_init();
  156. if (curl)
  157. {
  158. curl_easy_setopt(curl, CURLOPT_COOKIEFILE, "/tmp/cookie.txt"); // 指定cookie文件
  159. curl_easy_setopt(curl, CURLOPT_POSTFIELDS, postString); // ָ指定post内容,用$符号拼接
  160. curl_easy_s
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/673920
推荐阅读
相关标签
  

闽ICP备14008679号