-
Notifications
You must be signed in to change notification settings - Fork 1
/
gateway.html
119 lines (87 loc) · 3.67 KB
/
gateway.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<title>网关,让蓝牙拥入互联网的怀抱</title>
<meta name="generator" content="Bootply" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="js/html5.js"></script>
<![endif]-->
<link href="css/styles.css" rel="stylesheet">
<style>
.col-center-block {
float: none;
display: block;
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<nav class="navbar navbar-trans navbar-fixed-top" role="navigation">
<div class="container">
<a href="./index.html">
<h4 class="text-center">JUMA物联网基础软件架构</h4>
</a>
</div>
<!-- <div class="navbar-collapse collapse" id="navbar-collapsible">
<ul class="nav navbar-nav navbar">
<li><a href="#section1">What</a></li>
<li><a href="#section2">When</a></li>
</ul>
</div>-->
</nav>
<section class="container-fluid" id="section4">
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<div>
<h3>网关,让蓝牙拥入互联网的怀抱</h3>
<hr />
<h4>方案背景</h4>
<p>房东买了一个蓝牙门锁,新的租客来了,房东人在外地,怎么给租客开门?</p>
<p>商场里面的iBeacon设备,广播包中携带着温湿度监测数据,如何让管理员上网查看?</p>
<p>对于已经发售的蓝牙产品,如果出现Bug,厂商如何对其升级维护?</p>
<p>如果能够让蓝牙设备连上互联网,这一切都会变得简单。</p>
<p>网关在物联网时代会扮演重要的角色,它将成为连接物联网与互联网的纽带。它在使用不同的通信协议、数据格式,甚至体系结构之间起到翻译作用。</p>
<img src="./images/gateway.jpg" class="img-responsive center-block ">
<br />
<hr />
<h4>方案概述</h4>
<p>JUMA推出的蓝牙网关具有以下拓扑结构:</p>
<img src="./images/gateway3.jpg" class="img-responsive center-block ">
<br />
<p>从硬件上说,网关具有蓝牙4.0通信模块,2G/3G或者以太网模块。从软件上来说,网关搭载着Linux/Android操作系统,支持蓝牙4.0协议栈、TCP/IP协议栈。网关上运行的程序具有数据解析、数据中转、设备监控、设备升级维护等功能。</p>
<p>从部署角度来说,一般一个场景中放置一个网关,它会连接周围的蓝牙设备,管理员也可以通过配置选择与其连接的蓝牙设备。如果需要连接的设备超出了网关蓝牙信号以外,则可以通过中继器,或者建立蓝牙自组网(Mesh)等方式扩大网络的通信范围。</p>
<hr />
<h4>技术指标</h4>
<ul>
<li>网关支持远程后台登陆和配置;</li>
<li>网关支持通用数据上传云服务;</li>
<li>网关支持蓝牙设备空中升级(OTA);</li>
</ul>
<hr />
<h4>服务内容</h4>
<ul>
<li>蓝牙SDK;</li>
<li>网关软硬件定制和技术支持;</li>
</ul>
<hr />
<h4>方案咨询</h4>
<p>请发邮件至<a href=mailto:[email protected]>[email protected]</a>,客服人员会和您联系。</p>
<hr />
</div>
</div>
</div>
</div>
</div>
</section>
<!-- script references -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>