自动化智能家居控制系统代码 智能家居程序代码

发布时间:2024-12-26 05:35

利用智能家居系统,实现远程控制和自动化 #生活技巧# #家居布置建议# #现代简约家居#

#include <stdio.h> #include <string.h> #include <stdlib.h> #include <unistd.h> #include <pthread.h> #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #include <wiringSerial.h> #include "contrlDevices.h" #include "InputCommand.h" #define SWITCH1 21//四盏灯对应的引脚 #define SWITCH2 22 #define SWITCH3 23 #define SWITCH4 24 #define SWITCH5 25//火焰传感器对应的引脚 struct InputCommander *pCommandHead = NULL;//指令控制工厂链表节点头 struct Devices *pdeviceHead = NULL;//设备工厂链表头节点 struct InputCommander *socketHandler = NULL;//网络控制线程执行的函数使用到的全局变量,在read_thread线程和socket_thread都使用到了 int c_fd; struct Devices* findDeviceByName(char *name,struct Devices *phead)//根据名字寻找设备工厂链表链节函数,并返回链节 {struct Devices *tmp = phead;if(phead == NULL){return NULL;}else{while(tmp != NULL){if(strcmp(tmp->deviceName,name) == 0){return tmp;}tmp = tmp->next;}return NULL;} } struct InputCommander* findCommandByName(char *name,struct InputCommander *phead)//根据名字寻找指令控制工厂链表链节函数,并返回链节 {struct InputCommander *tmp = phead;if(phead == NULL){return NULL;}else{while(tmp != NULL){if(strcmp(tmp->commandName,name) == 0){return tmp;}tmp = tmp->next;}return NULL;} } void *fireAlarmThread(void *data)//“火灾报警器线程”执行的函数 {int status;struct Devices *firetmp = NULL;struct Devices *buztmp = NULL;firetmp = findDeviceByName("fireIfOrNot",pdeviceHead);//寻找“火焰传感器”链表节点,返回给firetmpbuztmp = findDeviceByName("beep",pdeviceHead);//寻找“蜂鸣器”链表节点,返回给buztmpwhile(1){status = firetmp->readStatus(firetmp->pinNum);//读取“火焰传感器”状态if(status == 0){//检测到火焰或强光源buztmp->open(buztmp->pinNum);//打开蜂鸣器delay(1000);//延时1000毫秒=1秒}if(status == 1){//未检测到火焰、强光源或解除警报buztmp->close(buztmp->pinNum);//关闭蜂鸣器}} } void * voice_thread(void* datas)//语音线程 {struct InputCommander *voiceHandler;struct Devices *tmp = NULL;int nread;voiceHandler = findCommandByName("voice",pCommandHead);//找到语音节点if(voiceHandler == NULL){//防止段错误printf("find voiceHandler error\n");pthread_exit(NULL);//线程里不用return}else{if(voiceHandler->Init(voiceHandler,NULL,NULL)<0){//判断voice的fd是否正确printf("voice init error\n");pthread_exit(NULL);}else{printf("%s init success\n",voiceHandler->commandName);}while(1){nread = voiceHandler->getCommand(voiceHandler);//指令读在voiceHandler->command里面if(nread==0){printf("waiting....\n");}else{printf("do divece contrl:%s\n",voiceHandler->command);if(strstr(voiceHandler->command,"WZ") != NULL){//一级指令,printf("shoudaoXP\n");}else if(strstr(voiceHandler->command,"KYS") != NULL){//对串口收到的指令进行分析,并执行对应的操作digitalWrite(SWITCH1,LOW);}else if(strstr(voiceHandler->command,"GYS") != NULL){digitalWrite(SWITCH1,HIGH);}else if(strstr(voiceHandler->command,"KCT") != NULL){digitalWrite(SWITCH2,LOW);}else if(strstr(voiceHandler->command,"GCT") != NULL){digitalWrite(SWITCH2,HIGH);}else if(strstr(voiceHandler->command,"KEL") != NULL){digitalWrite(SWITCH3,LOW);}else if(strstr(voiceHandler->command,"GEL") != NULL){digitalWrite(SWITCH3,HIGH);}else if(strstr(voiceHandler->command,"KWS") != NULL){digitalWrite(SWITCH4,LOW);}else if(strstr(voiceHandler->command,"GWS") != NULL){digitalWrite(SWITCH4,HIGH);}}memset(voiceHandler->command,'\0',sizeof(voiceHandler->command));}} } void *cameraThread_func(void* data)//起线程的函数有格式要求 {struct Devices *cameraTemp;cameraTemp = findDeviceByName("camera", pdeviceHead);//设备都要从工厂里面取出来if(cameraTemp == NULL){ //防止段错误的必需判断,当给指针赋值是,一定要考虑NULL的情况,否则后续操作都是空谈printf("find camera error\n");pthread_exit(NULL); //在线程中不用return}cameraTemp->justDoOnce(); //调用postUrl函数 } void * read_thread(void* datas) {int n_read;while(1){memset(socketHandler->command,'\0', sizeof(socketHandler->command));n_read = read(c_fd,socketHandler->command,sizeof(socketHandler->command));//从套接字中读取指令放在socketHandler->command中if(n_read == -1){perror("read");}else if(n_read>0){printf("\nget: %d,%s\n",n_read,socketHandler->command);//打印出指令字节数和指令if(strstr(socketHandler->command,"KYS") != NULL){//对socket收到的指令进行分析,并执行对应的操作digitalWrite(SWITCH1,LOW);}if(strstr(socketHandler->command,"GYS") != NULL){digitalWrite(SWITCH1,HIGH);}if(strstr(socketHandler->command,"KCT") != NULL){digitalWrite(SWITCH2,LOW);}if(strstr(socketHandler->command,"GCT") != NULL){digitalWrite(SWITCH2,HIGH);}if(strstr(socketHandler->command,"KEL") != NULL){digitalWrite(SWITCH3,LOW);}if(strstr(socketHandler->command,"GEL") != NULL){digitalWrite(SWITCH3,HIGH);}if(strstr(socketHandler->command,"KWS") != NULL){digitalWrite(SWITCH4,LOW);}if(strstr(socketHandler->command,"GWS") != NULL){digitalWrite(SWITCH4,HIGH);}if(0 == strcmp(socketHandler->command,"OPCA")){//当指令是OPCA时创建摄像头线程,完成拍照,人脸识别pthread_t cameraThread;pthread_create(&cameraThread,NULL,cameraThread_func,NULL);//pthread_join(cameraThread, NULL);}}} } void * socket_thread(void* datas) {int n_read = 0;pthread_t readThread;struct sockaddr_in c_addr;memset(&c_addr, 0, sizeof(struct sockaddr_in));int clen = sizeof(struct sockaddr_in);socketHandler = findCommandByName("sockerServer",pCommandHead);if(socketHandler == NULL){//防止段错误printf("find socketHandler error\n");pthread_exit(NULL);//在线程中不用return}else{printf("%s init success\n",socketHandler->commandName);}socketHandler->Init(socketHandler,NULL,NULL);//找到之后执行socketInit函数while(1){c_fd = accept(socketHandler->sfd, (struct sockaddr *)&c_addr, &clen);//不断连接connect,连接到后创建readThread线程pthread_create(&readThread,NULL,read_thread,NULL);} } int main() {char name[128];struct Devices *tmp = NULL;pthread_t voiceThread;pthread_t socketThread;pthread_t fireAlarm_thread;if(wiringPiSetup() == -1){return -1;}//1.指令工厂初始化pCommandHead = addvoiceContrlToInputCommandLink(pCommandHead);pCommandHead = addSocketContrlToInputCommandLink(pCommandHead);//2.设备控制工厂初始化pdeviceHead = addBathroomLightToDeviceLink(pdeviceHead);pdeviceHead = addUpstairLightToDeviceLink(pdeviceHead);pdeviceHead = addRestaurantLightToDeviceLink(pdeviceHead);pdeviceHead = addLivingroomLightToDeviceLink(pdeviceHead);pdeviceHead = addcameraToDeviceLink(pdeviceHead);pdeviceHead = addFireToDeviceLink(pdeviceHead);pdeviceHead = addBeepToDeviceLink(pdeviceHead);struct Devices *tmpDeviceshead = pdeviceHead;while(tmpDeviceshead != NULL){//设备工厂所有设备初始化tmpDeviceshead->deviceInit(tmpDeviceshead->pinNum);tmpDeviceshead = tmpDeviceshead->next;}//3.线程池建立//int pthread_create(pthread_t *restrict tidp, const pthread_attr_t *restrict attr, void *(*start_rtn)(void *), void *restrict arg);//3.1语音线程pthread_create(&voiceThread,NULL,voice_thread,NULL);//3.2socket线程pthread_create(&socketThread,NULL,socket_thread,NULL);//3.3摄像头线程//3.4火灾线程pthread_create(&fireAlarm_thread,NULL,fireAlarmThread,NULL);printf("camera init success\n");pthread_join(voiceThread,NULL);//等待语音线程调用pthread_exit函数pthread_join(socketThread,NULL);//等待socket线程调用pthread_exit函数pthread_join(fireAlarm_thread, NULL);//等待火灾线程调用pthread_exit函数return 0; }1.2.3.4.5.6.7.8.9.10.11.12.13.14.15.16.17.18.19.20.21.22.23.24.25.26.27.28.29.30.31.32.33.34.35.36.37.38.39.40.41.42.43.44.45.46.47.48.49.50.51.52.53.54.55.56.57.58.59.60.61.62.63.64.65.66.67.68.69.70.71.72.73.74.75.76.77.78.79.80.81.82.83.84.85.86.87.88.89.90.91.92.93.94.95.96.97.98.99.100.101.102.103.104.105.106.107.108.109.110.111.112.113.114.115.116.117.118.119.120.121.122.123.124.125.126.127.128.129.130.131.132.133.134.135.136.137.138.139.140.141.142.143.144.145.146.147.148.149.150.151.152.153.154.155.156.157.158.159.160.161.162.163.164.165.166.167.168.169.170.171.172.173.174.175.176.177.178.179.180.181.182.183.184.185.186.187.188.189.190.191.192.193.194.195.196.197.198.199.200.201.202.203.204.205.206.207.208.209.210.211.212.213.214.215.216.217.218.219.220.221.222.223.224.225.226.227.228.229.230.231.232.233.234.235.236.237.238.239.240.241.242.243.244.245.246.247.248.249.250.251.252.253.254.255.256.257.258.259.260.261.262.263.264.265.266.267.268.269.

在添加摄像头线程时,改了半天错误之后,可运行了,但是给我提示 segment fault,哈哈哈,心态崩了。当时我就关了树莓派打起了LOL,这一打就是一下午。晚上接着处理段错误,无果,第二天,无果。第二天晚上在图书馆发呆想到了找段错误的一种方法:printf调试法,晚上回到宿舍用了printf调试法十分钟就找到了错误,然后改正,运行成功,人脸识别成功。

有的书上是这么说的,如果函数定义放在main函数前面,可以不用写声明。如果函数放在main函数后面,就规定要写函数声明。这么说没毛病。
不过有的地方又说:如果在函数定义在这个函数调用之前,就不需要写声明。否则就要写声明。
大家稍微注意下就行。为了防止报错的话,只要是函数都给声明就行了。

warning: implicit declaration of function ‘test’ [-Wimplicit-function-declaration]

网址:自动化智能家居控制系统代码 智能家居程序代码 https://www.yuejiaxmz.com/news/view/570872

相关内容

基于Java的智能家居设计:高效Java代码在智能家居系统的性能优化
智能家居系统家庭自动化控制设备
用Python实现智能家居控制系统应用实战指南:家庭自动化与远程控制
AI智能家居系统如何实现自动化控制?
【智能控制系统 智能家居控制系统 智能控制主机智能家居控制系统主机】价格
智能家居控制系统:数字化时代的家居自动化引擎
智能家居系统:实现家庭自动化和智能化
智能家居控制系统下载
智能家居系统智能家居自动化技术
智能家居控制系统是什么 智能家居控制系统功能有哪些

随便看看