-
Notifications
You must be signed in to change notification settings - Fork 3
/
gateways-and-hubs.html
151 lines (151 loc) · 6.71 KB
/
gateways-and-hubs.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
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
<!DOCTYPE HTML>
<html>
<head>
<title>Gateways and Hubs | diyActive</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Instructions to build and operate IoT/RTLS gateways and hubs compatible with the reelyActive platform.">
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style/main.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.6.2/angular.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/2.5.0/ui-bootstrap-tpls.min.js"></script>
<script type="text/javascript" src="js/diyactive.js"></script>
</head>
<body ng-app="diyActive">
<div ng-controller="InteractionCtrl">
<nav class="navbar navbar-default" role="navigation">
<div class="navbar-header">
<button type="button" class="navbar-toggle"
ng-init="navCollapsed = true"
ng-click="navCollapsed = !navCollapsed">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="https://www.reelyactive.com">
<strong>reely</strong>Active
</a>
</div>
<div class="collapse navbar-collapse" ng-class="!navCollapsed && 'in'"
ng-click="navCollapsed = true">
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="/"> diyActive </a></li>
<li class="dropdown" uib-dropdown on-toggle="toggled(open)">
<a href class="dropdown-toggle" uib-dropdown-toggle role="button"
data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
Quick links <span class="caret"></span>
</a>
<ul class="dropdown-menu" uib-dropdown-menu role="menu">
<li role="menuitem">
<a href="https://github.com/reelyactive/" target="_blank">
reelyActive on GitHub
</a>
</li>
<li role="menuitem">
<a href="https://www.npmjs.com/~reelyactive" target="_blank">
reelyActive on npmjs
</a>
</li>
<li role="separator" class="divider"></li>
<li role="menuitem">
<a href="https://www.reelyactive.com" target="_blank">
reelyActive website
</a>
</li>
<li role="menuitem">
<a href="https://getpareto.com" target="_blank">
Pareto by reelyActive
</a>
</li>
<li role="separator" class="divider"></li>
<li role="menuitem">
<a href="https://shop.reelyactive.com" target="_blank">
Our online store
</a>
</li>
<li role="menuitem">
<a href="https://reelyactive.com/blog/" target="_blank">
Our blog
</a>
</li>
</ul>
</li>
</ul>
</div>
</nav>
<div class="container-fluid">
<div class="row">
<div class="col-xs-0 col-sm-1 col-md-2 col-lg-3"></div>
<div class="col-xs-12 col-sm-10 col-md-8 col-lg-6">
<h1>
reelyActive-Compatible Gateways and Hubs<br>
<small> Build and operate your own </small>
</h1>
<h2> Here's how to build your own hub: </h2>
<div class="well">
<div class="row">
<div class="col-xs-12 col-sm-3">
<a href="build-your-own-hub.html">
<img src="images/buildYourOwnHub.jpg"
class="img-responsive center-block">
</a>
</div>
<div class="col-xs-12 col-sm-9">
<h2> Build your own Hub </h2>
<p> Step-by-step guide to build your own hub which connects reelyActive reelceivers to any computing device through real-time serial-USB or serial-IP packet conversion. </p>
<a class="btn btn-primary" href="build-your-own-hub.html"
role="button"> Let's do it </a>
</div>
</div>
</div>
<div class="well">
<div class="row">
<div class="col-xs-12 col-sm-3">
<a href="make-a-tessel-hub.html">
<img src="images/tesselHub.jpg"
class="img-responsive center-block">
</a>
</div>
<div class="col-xs-12 col-sm-9">
<h2> Make a Tessel Hub </h2>
<p> Step-by-step guide to build your own hub from an inexpensive <a href="https://tessel.io/" target="_blank">Tessel 2</a> which supports WiFi and Ethernet connectivity and runs Node.js out-of-the-box. </p>
<a class="btn btn-primary" href="make-a-tessel-hub.html"
role="button"> Let's do it </a>
</div>
</div>
</div>
<div class="well">
<div class="row">
<div class="col-xs-12 col-sm-3">
<a href="make-a-pi-hub.html">
<img src="images/piHub.jpg"
class="img-responsive center-block">
</a>
</div>
<div class="col-xs-12 col-sm-9">
<h2> Make a Raspberry Pi Hub </h2>
<p> Step-by-step guide to build your own hub from the ubiquitous <a href="https://www.raspberrypi.org" target="_blank">Raspberry Pi</a> which supports WiFi and Ethernet connectivity. </p>
<a class="btn btn-primary" href="make-a-pi-hub.html"
role="button"> Let's do it </a>
</div>
</div>
</div>
<p> </p>
</div>
<div class="col-xs-0 col-sm-1 col-md-2 col-lg-3"></div>
</div>
</div>
<footer class="footer">
<a href="/"
uib-tooltip="Do-it-yourself with reelyActive"
tooltip-placement="left"> diyActive </a> |
<a href="https://www.reelyactive.com"
uib-tooltip="We believe in an open Internet of Things"
tooltip-placement="right">
© reelyActive 2014-2018
</a>
</footer>
</div>
</body>
</html>