Error[8]: Undefined offset: 595, File: /www/wwwroot/outofmemory.cn/tmp/plugin_ss_superseo_model_superseo.php, Line: 121
File: /www/wwwroot/outofmemory.cn/tmp/plugin_ss_superseo_model_superseo.php, Line: 473, decode(

智能家居项目开发

一、智能家居功能细节拆分

控制区:

语音识别模块,socket客户端

外设区:

继电器组控制灯,远程终端子系统控制灯,窗帘等,火灾报警,摄像头。

面向对象类和对象的该概念

类:是一种用户定义的引用的数据类型,也称类类型,(结构体)
对象:类的一种具象

struct Animal {
      char name[128];
      int age;
      int sex;         //成员属性
      void *peat();
      void *pbeat();   //成员方法
};

对象是类的一种具象,如 struct Animal dog ;struct Animal cat;struct Animal person; dog 就是类的具体的对象,dog是Animal类的对象。

C语言面向对象的代码

#include
//类:抽象的
struct Animal {
      char name[128];
      int age;
      int sex;         //成员属性
      void (*peat)();
      void (*pbeat)();   //成员方法
};


void dogEat()
{
   printf("狗吃骨头\n");
}
void catEat()
{
   printf("猫吃鱼\n");
}
void personEat()
{
   printf("人吃饭\n");
}

void dongBeat()
{
  printf("咬人\n");
}

void dogBeat()
{
  printf("咬人\n");
}

void catBeat()
{
  printf("抓人\n");
}
void personBeat()
{
  printf("打人\n");
}

int main()
{
    struct Animal dog;
    struct Animal cat;
    struct Animal person;   //对象,事物的具象
    
    dog.peat =  dogEat;
    cat.peat =  catEat;
    person.peat =  personEat;

    dog.pbeat =  dogBeat;
    cat.pbeat=  catBeat;
    person.pbeat=  personBeat;

    dog.peat();
    cat.peat();
    person.peat();
   
    dog.pbeat();
    cat.pbeat();
    person.pbeat();
    
    return 0;
}
结构体新玩法

内核的方式给结构体赋值:

 struct Animal dog2 = {
    .name = "阿黄",
    .peat = dogEat,
    .pbeat = dogBeat
};

新玩法代码

#include
//类:抽象的
struct Animal {
      char name[128];
      int age;
      int sex;         //成员属性
      void (*peat)();
      void (*pbeat)();   //成员方法
};

void dogEat()
{
   printf("狗吃骨头\n");
}

void dongBeat()
{
  printf("咬人\n");
}

int main()
{
//以前我们写结构体赋值时,是这样按顺序怼进去
    struct Animal dog1 = {"阿黄",1,1,dogEat,dogBeat};
//有时候我们只是想给单个赋值,我们怎么写呢?
    struct Animal dog2 = {
    .name = "阿黄",
    .peat = dogEat,
    .pbeat = dogBeat
    };
 
    dog.peat();
    dog.pbeat();
    
    return 0;
}
二、工厂模式 1. 工厂模式的概念

工厂模式(Factory Pattern)是最常用的设计模式之一,这种类型的设计模式属于创建型模式,它提供了一种创建对象的最佳方式。

在工厂模式中,我们在创建对象时不会对客户端暴露创建逻辑,并且是通过使用一个共同的接口(API)来指向新创建的对象。

2. 工厂模式的实现

创建对象时不会对客户端暴露创建逻辑,并且是通过使用一个共同的接口(API)来指向新创建的对象。

暴漏逻辑代码例如:

#include
//类:抽象的
struct Animal {
      char name[128];
      int age;
      int sex;         //成员属性
      void (*peat)();
      void (*pbeat)();   //成员方法
};

void dogEat()
{
   printf("狗吃骨头\n");
}

void dongBeat()
{
  printf("咬人\n");
}

int main()
{
    struct Animal dog= {
    .name = "阿黄",
    .peat = dogEat,
    .pbeat = dogBeat
    };
 
    dog.peat();
    dog.pbeat();
    
    return 0;
}

暴漏了逻辑

void dogEat()
{
   printf("狗吃骨头\n");
}

void dongBeat()
{
  printf("咬人\n");
}

    struct Animal dog2 = {
    .name = "阿黄",
    .peat = dogEat,
    .pbeat = dogBeat
    };

设计思路图

#include"animal.h"
#include
//功能链表的遍历
struct Animal *findUtilByName(char *str,struct Animal *phead)
{
      struct Animal *tmp = phead;

      if(phead == NULL){
           return NULL;
      }
      else{
           while(tmp != NULL){
		   if(strcmp(tmp->name,str)==0){    //若s1、s2字符串相等,则返回零
		       return tmp;
		   }
		   tmp = tmp->next;  
	   }
	   return NULL;
      }

}


int main()
{

	char buf[128]={'}';struct
	Animal * =phead NULL ;struct
    Animal * ;ptmp//把文件都连接起来(链表)
    
	=
	phead putCatInLink ()phead;=
	phead putDogInLink ()phead;=
	phead putPersonInLink ()phead;//业务代码
    while
	(1)puts{
		("please input Tom ,pipi,CONG");scanf
		("%s",)buf;=
	    ptmp findUtilByName (,buf)phead;if
		(!=ptmp NULL )pbeat{
		ptmp->();peat
		ptmp->();}
	        
		memset
        (,buf','sizeof())buf;}return
	0
	; }XXX.c
animal.h

他们之间的关联就是链表一样,一个文件加入链表,要加功能(就是加文件)就把文件当成元素插入链表中。

3. 工厂模式使用及功能验证


把文件中的cat ,dog, person 换成 卧室灯,餐厅灯,客厅灯,不就是功能性文件嘛, 要在来个卫生间灯,就在加一个文件。

三、智能家居项目框架设计

1. 智能家居架构代码文件工程建立

以上是智能家居开发的软件框架构建准备工作,接下来开始代码的编写。

)
File: /www/wwwroot/outofmemory.cn/tmp/route_read.php, Line: 126, InsideLink()
File: /www/wwwroot/outofmemory.cn/tmp/index.inc.php, Line: 165, include(/www/wwwroot/outofmemory.cn/tmp/route_read.php)
File: /www/wwwroot/outofmemory.cn/index.php, Line: 30, include(/www/wwwroot/outofmemory.cn/tmp/index.inc.php)
Error[8]: Undefined offset: 596, File: /www/wwwroot/outofmemory.cn/tmp/plugin_ss_superseo_model_superseo.php, Line: 121
File: /www/wwwroot/outofmemory.cn/tmp/plugin_ss_superseo_model_superseo.php, Line: 473, decode(

智能家居项目开发

一、智能家居功能细节拆分

控制区:

语音识别模块,socket客户端

外设区:

继电器组控制灯,远程终端子系统控制灯,窗帘等,火灾报警,摄像头。

面向对象类和对象的该概念

类:是一种用户定义的引用的数据类型,也称类类型,(结构体)
对象:类的一种具象

struct Animal {
      char name[128];
      int age;
      int sex;         //成员属性
      void *peat();
      void *pbeat();   //成员方法
};

对象是类的一种具象,如 struct Animal dog ;struct Animal cat;struct Animal person; dog 就是类的具体的对象,dog是Animal类的对象。

C语言面向对象的代码

#include
//类:抽象的
struct Animal {
      char name[128];
      int age;
      int sex;         //成员属性
      void (*peat)();
      void (*pbeat)();   //成员方法
};


void dogEat()
{
   printf("狗吃骨头\n");
}
void catEat()
{
   printf("猫吃鱼\n");
}
void personEat()
{
   printf("人吃饭\n");
}

void dongBeat()
{
  printf("咬人\n");
}

void dogBeat()
{
  printf("咬人\n");
}

void catBeat()
{
  printf("抓人\n");
}
void personBeat()
{
  printf("打人\n");
}

int main()
{
    struct Animal dog;
    struct Animal cat;
    struct Animal person;   //对象,事物的具象
    
    dog.peat =  dogEat;
    cat.peat =  catEat;
    person.peat =  personEat;

    dog.pbeat =  dogBeat;
    cat.pbeat=  catBeat;
    person.pbeat=  personBeat;

    dog.peat();
    cat.peat();
    person.peat();
   
    dog.pbeat();
    cat.pbeat();
    person.pbeat();
    
    return 0;
}
结构体新玩法

内核的方式给结构体赋值:

 struct Animal dog2 = {
    .name = "阿黄",
    .peat = dogEat,
    .pbeat = dogBeat
};

新玩法代码

#include
//类:抽象的
struct Animal {
      char name[128];
      int age;
      int sex;         //成员属性
      void (*peat)();
      void (*pbeat)();   //成员方法
};

void dogEat()
{
   printf("狗吃骨头\n");
}

void dongBeat()
{
  printf("咬人\n");
}

int main()
{
//以前我们写结构体赋值时,是这样按顺序怼进去
    struct Animal dog1 = {"阿黄",1,1,dogEat,dogBeat};
//有时候我们只是想给单个赋值,我们怎么写呢?
    struct Animal dog2 = {
    .name = "阿黄",
    .peat = dogEat,
    .pbeat = dogBeat
    };
 
    dog.peat();
    dog.pbeat();
    
    return 0;
}
二、工厂模式 1. 工厂模式的概念

工厂模式(Factory Pattern)是最常用的设计模式之一,这种类型的设计模式属于创建型模式,它提供了一种创建对象的最佳方式。

在工厂模式中,我们在创建对象时不会对客户端暴露创建逻辑,并且是通过使用一个共同的接口(API)来指向新创建的对象。

2. 工厂模式的实现

创建对象时不会对客户端暴露创建逻辑,并且是通过使用一个共同的接口(API)来指向新创建的对象。

暴漏逻辑代码例如:

#include
//类:抽象的
struct Animal {
      char name[128];
      int age;
      int sex;         //成员属性
      void (*peat)();
      void (*pbeat)();   //成员方法
};

void dogEat()
{
   printf("狗吃骨头\n");
}

void dongBeat()
{
  printf("咬人\n");
}

int main()
{
    struct Animal dog= {
    .name = "阿黄",
    .peat = dogEat,
    .pbeat = dogBeat
    };
 
    dog.peat();
    dog.pbeat();
    
    return 0;
}

暴漏了逻辑

void dogEat()
{
   printf("狗吃骨头\n");
}

void dongBeat()
{
  printf("咬人\n");
}

    struct Animal dog2 = {
    .name = "阿黄",
    .peat = dogEat,
    .pbeat = dogBeat
    };

设计思路图

#include"animal.h"
#include
//功能链表的遍历
struct Animal *findUtilByName(char *str,struct Animal *phead)
{
      struct Animal *tmp = phead;

      if(phead == NULL){
           return NULL;
      }
      else{
           while(tmp != NULL){
		   if(strcmp(tmp->name,str)==0){    //若s1、s2字符串相等,则返回零
		       return tmp;
		   }
		   tmp = tmp->next;  
	   }
	   return NULL;
      }

}


int main()
{

	char buf[128]={'}';struct
	Animal * =phead NULL ;struct
    Animal * ;ptmp//把文件都连接起来(链表)
    
	=
	phead putCatInLink ()phead;=
	phead putDogInLink ()phead;=
	phead putPersonInLink ()phead;//业务代码
    while
	(1)puts{
		("please input Tom ,pipi,CONG");scanf
		("%s",)buf;=
	    ptmp findUtilByName (,buf)phead;if
		(!=ptmp NULL )pbeat{
		ptmp->();peat
		ptmp->();}
	        
		memset
        (,buf','sizeof())buf;}return
	0
	; }XXX.c
animal.h

他们之间的关联就是链表一样,一个文件加入链表,要加功能(就是加文件)就把文件当成元素插入链表中。

3. 工厂模式使用及功能验证


把文件中的cat ,dog, person 换成 卧室灯,餐厅灯,客厅灯,不就是功能性文件嘛, 要在来个卫生间灯,就在加一个文件。

三、智能家居项目框架设计

1. 智能家居架构代码文件工程建立

以上是智能家居开发的软件框架构建准备工作,接下来开始代码的编写。

)
File: /www/wwwroot/outofmemory.cn/tmp/route_read.php, Line: 126, InsideLink()
File: /www/wwwroot/outofmemory.cn/tmp/index.inc.php, Line: 165, include(/www/wwwroot/outofmemory.cn/tmp/route_read.php)
File: /www/wwwroot/outofmemory.cn/index.php, Line: 30, include(/www/wwwroot/outofmemory.cn/tmp/index.inc.php)
智能家居项目开发: 工厂模式+Socket _C_内存溢出

智能家居项目开发: 工厂模式+Socket

智能家居项目开发: 工厂模式+Socket ,第1张

智能家居项目开发
  • 一、智能家居功能细节拆分
    • 控制区:
    • 外设区:
    • 面向对象类和对象的该概念
    • 结构体新玩法
  • 二、工厂模式
    • 1. 工厂模式的概念
    • 2. 工厂模式的实现
    • 3. 工厂模式使用及功能验证
  • 三、智能家居项目框架设计
    • 1. 智能家居架构代码文件工程建立

一、智能家居功能细节拆分

控制区:

语音识别模块,socket客户端

外设区:

继电器组控制灯,远程终端子系统控制灯,窗帘等,火灾报警,摄像头。

面向对象类和对象的该概念

类:是一种用户定义的引用的数据类型,也称类类型,(结构体)
对象:类的一种具象

struct Animal {
      char name[128];
      int age;
      int sex;         //成员属性
      void *peat();
      void *pbeat();   //成员方法
};

对象是类的一种具象,如 struct Animal dog ;struct Animal cat;struct Animal person; dog 就是类的具体的对象,dog是Animal类的对象。

C语言面向对象的代码

#include
//类:抽象的
struct Animal {
      char name[128];
      int age;
      int sex;         //成员属性
      void (*peat)();
      void (*pbeat)();   //成员方法
};


void dogEat()
{
   printf("狗吃骨头\n");
}
void catEat()
{
   printf("猫吃鱼\n");
}
void personEat()
{
   printf("人吃饭\n");
}

void dongBeat()
{
  printf("咬人\n");
}

void dogBeat()
{
  printf("咬人\n");
}

void catBeat()
{
  printf("抓人\n");
}
void personBeat()
{
  printf("打人\n");
}

int main()
{
    struct Animal dog;
    struct Animal cat;
    struct Animal person;   //对象,事物的具象
    
    dog.peat =  dogEat;
    cat.peat =  catEat;
    person.peat =  personEat;

    dog.pbeat =  dogBeat;
    cat.pbeat=  catBeat;
    person.pbeat=  personBeat;

    dog.peat();
    cat.peat();
    person.peat();
   
    dog.pbeat();
    cat.pbeat();
    person.pbeat();
    
    return 0;
}
结构体新玩法

内核的方式给结构体赋值:

 struct Animal dog2 = {
    .name = "阿黄",
    .peat = dogEat,
    .pbeat = dogBeat
};

新玩法代码

#include
//类:抽象的
struct Animal {
      char name[128];
      int age;
      int sex;         //成员属性
      void (*peat)();
      void (*pbeat)();   //成员方法
};

void dogEat()
{
   printf("狗吃骨头\n");
}

void dongBeat()
{
  printf("咬人\n");
}

int main()
{
//以前我们写结构体赋值时,是这样按顺序怼进去
    struct Animal dog1 = {"阿黄",1,1,dogEat,dogBeat};
//有时候我们只是想给单个赋值,我们怎么写呢?
    struct Animal dog2 = {
    .name = "阿黄",
    .peat = dogEat,
    .pbeat = dogBeat
    };
 
    dog.peat();
    dog.pbeat();
    
    return 0;
}
二、工厂模式 1. 工厂模式的概念

工厂模式(Factory Pattern)是最常用的设计模式之一,这种类型的设计模式属于创建型模式,它提供了一种创建对象的最佳方式。

在工厂模式中,我们在创建对象时不会对客户端暴露创建逻辑,并且是通过使用一个共同的接口(API)来指向新创建的对象。

2. 工厂模式的实现

创建对象时不会对客户端暴露创建逻辑,并且是通过使用一个共同的接口(API)来指向新创建的对象。

暴漏逻辑代码例如:

#include
//类:抽象的
struct Animal {
      char name[128];
      int age;
      int sex;         //成员属性
      void (*peat)();
      void (*pbeat)();   //成员方法
};

void dogEat()
{
   printf("狗吃骨头\n");
}

void dongBeat()
{
  printf("咬人\n");
}

int main()
{
    struct Animal dog= {
    .name = "阿黄",
    .peat = dogEat,
    .pbeat = dogBeat
    };
 
    dog.peat();
    dog.pbeat();
    
    return 0;
}

暴漏了逻辑

void dogEat()
{
   printf("狗吃骨头\n");
}

void dongBeat()
{
  printf("咬人\n");
}

    struct Animal dog2 = {
    .name = "阿黄",
    .peat = dogEat,
    .pbeat = dogBeat
    };

设计思路图

  • 首先在选定位置新建一个文件夹,然后在文件夹里面新建dog.c、animal.h、cat.c和mainPro.c 然后再新建一个文件夹存放sourceInsight的工程文件(有关sourceInsight的用法),如下图所示:

  • 先写下4个分文件,animal.h 、cat.c 、dog.c 、person.c(一个功能一个文件) 然后将对应的代码写入对应的文件,比如:dog.c这个文件就是存放dog这个对象的相关行为,并且提供让主程序调用的函数API将dog这个对象添加到链表中去(这个就像是以后的智能家居为实现整个控制系统,需要添加的各个功能模块,一个供能模块就是一个文件),putdogInLink 是将dog对象插入进链表的API接口,这里采用头插法进行插入,即:先插入的在后边。

  • mainPro.c 主程序要调用这三个文件组成链表。 最后就是编写mainpro.c主函数,下面函数还编写了一个可供用户输入的然后查找响应节点的函数,用户输入要查找的节点名称,找到后返回指向该节点的指针,通过指针就可以对该节点进行 *** 作,就把它当做链表的一个节点即可。

#include"animal.h"
#include
//功能链表的遍历
struct Animal *findUtilByName(char *str,struct Animal *phead)
{
      struct Animal *tmp = phead;

      if(phead == NULL){
           return NULL;
      }
      else{
           while(tmp != NULL){
		   if(strcmp(tmp->name,str)==0){    //若s1、s2字符串相等,则返回零
		       return tmp;
		   }
		   tmp = tmp->next;  
	   }
	   return NULL;
      }

}


int main()
{

	char buf[128]={'}';struct
	Animal * =phead NULL ;struct
    Animal * ;ptmp//把文件都连接起来(链表)
    
	=
	phead putCatInLink ()phead;=
	phead putDogInLink ()phead;=
	phead putPersonInLink ()phead;//业务代码
    while
	(1)puts{
		("please input Tom ,pipi,CONG");scanf
		("%s",)buf;=
	    ptmp findUtilByName (,buf)phead;if
		(!=ptmp NULL )pbeat{
		ptmp->();peat
		ptmp->();}
	        
		memset
        (,buf','sizeof())buf;}return
	0
	; }XXX.c
animal.h

他们之间的关联就是链表一样,一个文件加入链表,要加功能(就是加文件)就把文件当成元素插入链表中。

3. 工厂模式使用及功能验证


把文件中的cat ,dog, person 换成 卧室灯,餐厅灯,客厅灯,不就是功能性文件嘛, 要在来个卫生间灯,就在加一个文件。

  • 添加XXX功能文件:
    在目录下添加文件struct Animal * putXXXInLink(struct Animal *phead); ,再在mainPro 中把将这些指令串为一个链表(接口)暴露出来,暴露出来目的是给然后根据指令,去查找对应的控制结点添加,加入功能链表中。
三、智能家居项目框架设计

  • 根据以上简单工厂模式,智能家居设计的时候,就可以设计为指令工厂、main函数、控制工厂,指令工厂面就存放指令(比如:语音指令、客户端指令等,sourceInsight),控制工厂就是控制一些家庭设备(比如:各个房间的灯,门锁、串口等,创建一个链表,),main函数里面首先创建两个链表(指令工厂、控制工厂),然后接下来创建两个线程(一个是语音的、一个是客户端的),在每个线程里面在接受到指令后去控制工厂里面去查找对应的控制设备然后进行一系列 *** 作。
1. 智能家居架构代码文件工程建立
  • 根据上面的叙述,我们可以创建以下架构的代码文件工程,指令工场和控制工场的头文件就是以下图片中的两个头文件。然后将这些文件导入到里面进行代码的编写。

以上是智能家居开发的软件框架构建准备工作,接下来开始代码的编写。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/798461.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-06
下一篇 2022-05-06

发表评论

登录后才能评论

评论列表(0条)

保存