在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 智能家居系统实现源代码(结构不错,高效)

智能家居系统实现源代码(结构不错,高效)

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:2.84M
  • 下载次数:14
  • 浏览次数:262
  • 发布时间:2020-08-30
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
智能家居系统实现源代码(结构不错,高效)
【实例截图】
【核心代码】
智能家居系统实现源代码.
└── code
├── arm开发板端
│   └── intelligence_home
│   ├── drivers
│   │   ├── dc-motor.o
│   │   ├── exio.o
│   │   ├── ov511.o
│   │   ├── s3c2410-adc.o
│   │   └── videodev.o
│   ├── grab
│   │   ├── encoder.c
│   │   ├── encoder.h
│   │   ├── huffman.c
│   │   ├── huffman.h
│   │   ├── jdatatype.h
│   │   ├── marker.c
│   │   ├── marker.h
│   │   ├── quant.c
│   │   ├── quant.h
│   │   ├── utils.c
│   │   └── utils.h
│   ├── information.dat
│   ├── intellect_home
│   ├── intellect_home.cpp
│   ├── libc++
│   │   └── libstdc++-3-libc6.1-2-2.10.0.so
│   ├── MachineMajor.cpp
│   ├── MachineMajor.h
│   ├── Makefile
│   ├── MyV4L.cpp
│   ├── MyV4L.h
│   ├── SockMsgFormat.cpp
│   ├── SockMsgFormat.h
│   ├── startup
│   ├── VideoCapture.cpp
│   └── VideoCapture.h
├── web客户端(移动终端)
│   └── HomeClient
│   ├── bin
│   │   └── Release
│   │   ├── HomeClient.exe
│   │   └── HomeClient.pdb
│   ├── HomeClient.csproj
│   ├── HomeClient.csproj.user
│   ├── HomeClient.sln
│   ├── HomeClient.suo
│   ├── Ico02 065.ico
│   ├── login.cs
│   ├── login.Designer.cs
│   ├── login.resx
│   ├── Mian.cs
│   ├── Mian.Designer.cs
│   ├── Mian.resx
│   ├── obj
│   │   ├── Debug
│   │   │   └── HomeClient.exe
│   │   ├── HomeClient.csproj.FileList.txt
│   │   └── Release
│   │   ├── HomeClient.AddUser.resources
│   │   ├── HomeClient.AirConditioner.resources
│   │   ├── HomeClient.ConfigManger.resources
│   │   ├── HomeClient.csproj.GenerateResource.Cache
│   │   ├── HomeClient.DiaryModify.resources
│   │   ├── HomeClient.DiarySearch.resources
│   │   ├── HomeClient.DiaryUpdate.resources
│   │   ├── HomeClient.door.resources
│   │   ├── HomeClient.electricCooker.resources
│   │   ├── HomeClient.exe
│   │   ├── HomeClient.FinacialModify.resources
│   │   ├── HomeClient.FinacialSearch.resources
│   │   ├── HomeClient.FinacialUpdate.resources
│   │   ├── HomeClient.HeathSearch.resources
│   │   ├── HomeClient.Humidifier.resources
│   │   ├── HomeClient.login.resources
│   │   ├── HomeClient.MatterModify.resources
│   │   ├── HomeClient.MatterSearch.resources
│   │   ├── HomeClient.MatterUpdate.resources
│   │   ├── HomeClient.MenuModify.resources
│   │   ├── HomeClient.MenuSearch.resources
│   │   ├── HomeClient.MenuUpdate.resources
│   │   ├── HomeClient.Mian.resources
│   │   ├── HomeClient.ModifyPSW.resources
│   │   ├── HomeClient.pdb
│   │   ├── HomeClient.Properties.Resources.resources
│   │   ├── HomeClient.ResetUser.resources
│   │   ├── HomeClient.RobotControl.resources
│   │   ├── HomeClient.ScheduleModity.resources
│   │   ├── HomeClient.ScheduleSearch.resources
│   │   ├── HomeClient.ScheduleUpdate.resources
│   │   ├── HomeClient.welcome.resources
│   │   ├── ResolveAssemblyReference.cache
│   │   ├── TempPE
│   │   │   ├── Properties.Resources.Designer.cs.dll
│   │   │   └── Web References.WebService.Reference.cs.dll
│   │   └── win32res.obj
│   ├── Program.cs
│   ├── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   └── Resources.resx
│   ├── Web References
│   │   └── WebService
│   │   ├── AFFAIR.datasource
│   │   ├── FINANCE_INFO.datasource
│   │   ├── HEALTH_INFO.datasource
│   │   ├── MENULIST.datasource
│   │   ├── MTR_INFO.datasource
│   │   ├── Reference.cs
│   │   ├── Reference.map
│   │   ├── Service.disco
│   │   ├── Service.wsdl
│   │   └── USER_PTY.datasource
│   ├── welcome.cs
│   ├── welcome.Designer.cs
│   ├── welcome.resx
│   ├── 事务管理
│   │   ├── DiaryModify.cs
│   │   ├── DiaryModify.Designer.cs
│   │   ├── DiaryModify.resx
│   │   ├── DiarySearch.cs
│   │   ├── DiarySearch.Designer.cs
│   │   ├── DiarySearch.resx
│   │   ├── DiaryUpdate.cs
│   │   ├── DiaryUpdate.Designer.cs
│   │   ├── DiaryUpdate.resx
│   │   ├── ScheduleModity.cs
│   │   ├── ScheduleModity.Designer.cs
│   │   ├── ScheduleModity.resx
│   │   ├── ScheduleSearch.cs
│   │   ├── ScheduleSearch.Designer.cs
│   │   ├── ScheduleSearch.resx
│   │   ├── ScheduleUpdate.cs
│   │   ├── ScheduleUpdate.Designer.cs
│   │   └── ScheduleUpdate.resx
│   ├── 家庭管理
│   │   ├── FinacialModify.cs
│   │   ├── FinacialModify.Designer.cs
│   │   ├── FinacialModify.resx
│   │   ├── FinacialSearch.cs
│   │   ├── FinacialSearch.Designer.cs
│   │   ├── FinacialSearch.resx
│   │   ├── FinacialUpdate.cs
│   │   ├── FinacialUpdate.Designer.cs
│   │   ├── FinacialUpdate.resx
│   │   ├── MatterModify.cs
│   │   ├── MatterModify.Designer.cs
│   │   ├── MatterModify.resx
│   │   ├── MatterSearch.cs
│   │   ├── MatterSearch.Designer.cs
│   │   ├── MatterSearch.resx
│   │   ├── MatterUpdate.cs
│   │   ├── MatterUpdate.Designer.cs
│   │   └── MatterUpdate.resx
│   ├── 家电控制
│   │   ├── AirConditioner.cs
│   │   ├── AirConditioner.Designer.cs
│   │   ├── AirConditioner.resx
│   │   ├── door.cs
│   │   ├── door.Designer.cs
│   │   ├── door.resx
│   │   ├── electricCooker.cs
│   │   ├── electricCooker.Designer.cs
│   │   ├── electricCooker.resx
│   │   ├── Humidifier.cs
│   │   ├── Humidifier.Designer.cs
│   │   ├── Humidifier.resx
│   │   ├── RobotControl.cs
│   │   ├── RobotControl.Designer.cs
│   │   └── RobotControl.resx
│   ├── 生活向导
│   │   ├── HeathSearch.cs
│   │   ├── HeathSearch.Designer.cs
│   │   ├── HeathSearch.resx
│   │   ├── MenuModify.cs
│   │   ├── MenuModify.Designer.cs
│   │   ├── MenuModify.resx
│   │   ├── MenuSearch.cs
│   │   ├── MenuSearch.Designer.cs
│   │   ├── MenuSearch.resx
│   │   ├── MenuUpdate.cs
│   │   ├── MenuUpdate.Designer.cs
│   │   └── MenuUpdate.resx
│   ├── 用户管理
│   │   ├── ModifyPSW.cs
│   │   ├── ModifyPSW.Designer.cs
│   │   ├── ModifyPSW.resx
│   │   ├── ResetUser.cs
│   │   ├── ResetUser.Designer.cs
│   │   ├── ResetUser.resx
│   │   ├── UpdateUser.cs
│   │   ├── UpdateUser.Designer.cs
│   │   └── UpdateUser.resx
│   └── 配置管理
│   ├── ConfigManger.cs
│   ├── ConfigManger.Designer.cs
│   └── ConfigManger.resx
└── web服务端
├── testS
│   ├── App_Code
│   │   ├── DataBaseOperate.cs
│   │   ├── HomeControl.cs
│   │   ├── MD5.cs
│   │   ├── Operate.cs
│   │   ├── Service.cs
│   │   └── SockMsgFormat.cs
│   ├── Bin
│   │   └── CustomControlFreak.dll
│   ├── Config.aspx
│   ├── Config.aspx.cs
│   ├── Config_Login.aspx
│   ├── Config_Login.aspx.cs
│   ├── img
│   │   ├── AirConClose.jpg
│   │   ├── AirConOpen.jpg
│   │   ├── Close.jpg
│   │   ├── CookerClose.jpg
│   │   ├── CookerOpen.jpg
│   │   ├── DoorClose.jpg
│   │   ├── DoorOpen.jpg
│   │   ├── Down.jpg
│   │   ├── HumClose.jpg
│   │   ├── HumOpen.jpg
│   │   ├── Left.jpg
│   │   ├── loginForm.bmp
│   │   ├── Logo_House.bmp
│   │   ├── Logo.JPG
│   │   ├── Open.jpg
│   │   ├── Right.jpg
│   │   ├── Robot.jpg
│   │   └── Up.jpg
│   ├── Service.asmx
│   ├── StyleForConfig.css
│   ├── testS.sln
│   ├── testS.suo
│   └── Web.Config
└── 数据库文件
├── HomeDataBase_log.LDF
└── HomeDataBase.mdf

29 directories, 209 files

标签:

实例下载地址

智能家居系统实现源代码(结构不错,高效)

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警