物联网连通性及系统集成(英汉双语)
物联网连通性及系统集成(英汉双语)Connectivity and Integrated Approach for IoT
¥
22.41
4.5折
¥
49.8
全新
库存2件
作者 [美]Norman、朱怀中、齐从谦 著
出版社 中国电力出版社
出版时间 2015-12
版次 1
装帧 平装
货号 D11
上书时间 2024-12-13
商品详情
品相描述:全新
图书标准信息
作者
[美]Norman、朱怀中、齐从谦 著
出版社
中国电力出版社
出版时间
2015-12
版次
1
ISBN
9787512385252
定价
49.80元
装帧
平装
开本
16开
纸张
胶版纸
页数
256页
字数
384千字
【内容简介】
《物联网连通性及系统集成(英汉双语)Connectivity and Integrated Approach for IoT》是一本针对物联网、智能手机和各种嵌入式设备应用开发的实用性技术书。全书以通俗易懂的语言,尽可能详尽的说明以及大量的开放性源代码,为读者介绍物联网平台的搭建,如何连接各种便携式设备和各类智能装置,以及整个物联网系统集成的方法。书中公布的大量源代码都来自工程实践并经本书作者一一调试,验证了它们的正确性。
全书包括HTTPAPI服务器运行机制、带套接口的内联网通信编程、Web服务器与Web页面、树莓派系统、Linux内核和应用程序编程接口及携带树莓派的无线网格网等6章。全书内容新颖、充实,重点突出,特色鲜明;每章中的代码均具有特定的功能,作者对那些重要的代码行都加注了英、中文注释,以帮助读者更好地理解其作用。
本书可作为高等学校工科类计算机科学与技术、网络工程、通信工程、电子信息技术、汽车电子、电力电子、航空航天等专业的教学用书,也可以作为计算机、通信类职业技术培训教材以及相关行业工程技术人员的参考用书。
【目录】
Preface 前言 Chapter 1 HTTP API Server 2 第1 章 HTTP API 服务器运行机制 3 1.1 Inside Look of an API Server 4 1.1 从内部窥探API 服务器 5 1.2 HTTP API Call to API Server from Web Server 16 1.2 来自Web 服务器网页的HTTP 对API 服务器的调用 17 1.3 HTTP API Call to API Server from Iphone 22 1.3 由Iphone 对API 服务器的HTTP 调用 23 1.4 HTTP API Call to API Server from Android 26 1.4 来自安卓手机的HTTP 对API 服务器的调用 27 1.5 HTTP API Call to API Server from Embedded System (Raspberry Pi) 30 1.5 来自嵌入式系统(树莓派)的HTTP 调用API 服务器 31 1.6 Additional Information on Apache Server 32 1.6 关于Apache 服务器的补充信息 33 Chapter 2 Intra-Network Communication with Socket Programming 40 第2 章 带套接口的内联网通信编程 41 2.1 TCP Transmission 40 2.1 TCP 传输 41 2.2 iOS TCP Server Sending Data 42 2.2 iOS TCP 服务器发送数据 45 2.3 iOS TCP Client Receiving Data 48 2.3 iOS TCP 客户机接收数据 49 2.4 Android TCP Server Sending Data 50 2.4 安卓向TCP 服务器发送数据 51 2.5 Android TCP Client Receiving Data 54 2.5 安卓TCP 客户机接收数据 55 2.6 UDP Transmission 56 2.6 UDP 传输方式 57 2.7 Raspberry Pi UDP Broadcasting and Receiving Message 58 2.7 树莓派UDP 广播和接收消息 59 2.8 Android UDP Server Broadcast Message 60 2.8 安卓UDP 服务器发送广播消息 61 2.9 Android UDP Client Receive Message 64 2.9 安卓UDP 客户端接收数据 65 2.10 Combining Both UDP and TCP 66 2.10 UDP 和 TCP 的结合 67 2.11 Enable Bluetooth on Raspberry Pi 66 2.11 启用蓝牙的树莓派 69 Chapter 3 Web Server and Web Page 76 第3 章 Web 服务器与Web 页面 77 3.1 Web page 76 3.1 Web 网页 77 3.2 Template Page (index.php) 82 3.2 模板页面(index.php) 83 3.3 Functions.php 文件的代码 89 3.3 Inside Functions.php 90 3.4 Home.html 96 3.4 主页 97 Chapter 4 The Raspberry Pi System 112 第4 章 树莓派系统 113 4.1 Introduction to Raspberry Pi 112 4.1 树莓派简介 113 4.2 The Broadcom chipset 116 4.2 Broadcom 芯片组 117 4.3 WebIOPi, Controlling GPIO from the Web 120 4.3 WebIOPi——在Web 中控制GPIO 121 4.4 Python (Development Language for Raspberry-Pi) 126 4.4 Python(树莓派开发工具)简介 127 4.5 Design Example of using WebIOPi 142 4.5 使用WebIOPi 的设计实例 143 4.6 Build customized OS for Raspberry Pi 154 4.6 为树莓派建立定制的OS 155 4.7 Exporting GPIO from sysfs 158 4.7 从sysfs 中导出GPIO 159 4.8 Expansion of GPIO using I2C 160 4.8 使用 I2C 的GPIO 扩展 161 4.9 Setting up a simple intranet 162 4.9 设置一个简单的内联网 163 4.10 GPIO Motion Sensing with PIR 166 4.10 带有PIR 的GPIO 运动检测 167 Chapter 5 Linux Kernel Internals and API 168 第5 章 Linux 内核和应用程序编程接口 169 5.1 Double Linked List Data Structure 168 5.1 双向链表的数据结构 169 5.2 RCU Read Copy Update 172 5.2 读取复制更新 173 5.3 net_device Structure 174 5.3 net_device 结构变量的定义 175 5.4 sk_buff Structure 180 5.4 sk_buff 结构 179 5.5 The sysfs Filesystem for Exporting Kernel Objects 182 5.5 sysfs 文件系统输出的内核对象 183 5.6 Dummy Net Driver Example 184 5.6 虚拟网络驱动程序举例 185 Chapter 6 Wireless Mesh Network with Raspberry-Pi 188 第6 章 携带树莓派的无线网格网 189 6.1 Issue of using micro-controller and Pi solution 188 6.1 多重微控制问题及其解决方案 189 6.2 Application of Batman-adv in Raspberry-Pi 190 6.2 Batman-adv 在树莓派中的应用 191 6.3 Tables 192 6.3 有关表格 193 6.4 The Files 194 6.4 文件 195 6.5 OGM Packet Format and Sending 196 6.5 OGM 报文格式及发送 197 6.6 Background Information 198 6.6 有关背景知识 199 Addendum 222 附录 222 A1 Designing of a Messaging System 一个网络聊天系统的设计 222 A2 Uploading Picture/Audio to API Server 上传图片和音乐到API Server 234 References 241 参考文献 241
点击展开
点击收起
— 没有更多了 —
以下为对购买帮助不大的评价