-
Notifications
You must be signed in to change notification settings - Fork 58
/
iot-message-hub.html
173 lines (148 loc) · 6.22 KB
/
iot-message-hub.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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!--
Copyright 2020 Google Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<script type="text/html" data-template-name="google-cloud-iot message-hub">
<!--Name-->
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name">
</div>
<!--Project ID-->
<div class="form-row">
<label for="node-input-projectId"><i class="fa fa-cloud"></i> Project ID</label>
<input type="text" id="node-input-projectId">
</div>
<!--Region-->
<div class="form-row">
<label for="node-input-region"><i class="fa fa-globe"></i> Region</label>
<input type="text" id="node-input-region">
</div>
<!--Registry ID-->
<div class="form-row">
<label for="node-input-registryId"><i class="fa fa-book"></i> Registry ID</label>
<input type="text" id="node-input-registryId">
</div>
<!--Device ID-->
<div class="form-row">
<label for="node-input-deviceId"><i class="fa fa-microchip"></i> Device ID</label>
<input type="text" id="node-input-deviceId">
</div>
<!--SubFolder
<div class="form-row">
<label for="node-input-subfolder"><i class="fa fa-folder"></i> SubFolder</label>
<input type="text" id="node-input-subfolder">
</div>
-->
<!--QoS-->
<div class="form-row">
<label for="node-input-qos"><i class="fa fa-tag"></i> QoS </label>
<select type="text" id="node-input-qos">
<option value="0">0 - delivers at most once</option>
<option value="1">1 - delivers at least once</option>
</select>
</div>
<!--MQTT Keepalive-->
<div class="form-row">
<label for="node-input-keepalive"><i class="fa fa-gear"></i> Keepalive (s) </label>
<input type="number" id="node-input-keepalive" value="300">
</div>
<!--Private Key-->
<div class="form-row">
<label for="node-input-privateKey"><i class="fa fa-key"></i> Private Key</label>
<input type="text" id="node-input-privateKey">
</div>
<!--Transport-->
<div class="form-row">
<label for="node-input-transport"><i class="fa fa-gear"></i> Transport</label>
<select type="text" id="node-input-transport">
<option value="MQTT">MQTT</option>
<option value="HTTP">HTTP</option>
</select>
</div>
</script>
<script type="text/html" data-help-name="google-cloud-iot message-hub">
<p>Hub Node: Send a telemetry message to the cloud /Receive a command or a config from the cloud.</p>
<h3>Inputs</h3>
<dl class="message-properties">
<dt>msg.gcp.projectId
<span class="property-type">string</span>
</dt>
<dd>The project id hosting the registry of devices.</dd>
<dt>msg.gcp.region
<span class="property-type">string</span>
</dt>
<dd>The region in which the registry is defined..</dd>
<dt>msg.gcp.registryId
<span class="property-type">string</span>
</dt>
<dd>The identity of the registry.</dd>
<dt>msg.gcp.deviceId
<span class="property-type">string</span>
</dt>
<dd>The identity of the device.</dd>
<!--<dt>msg.gcp.subFolder
<span class="property-type">string</span>
</dt>
<dd>The topic sub folder.</dd>-->
<dt>msg.gcp.qos
<span class="property-type">int</span>
</dt>
<dd>The QoS 0 (delivers at most once) or 1 value (delivers at least once)</dd>
<dt>msg.gcp.keepalive
<span class="property-type">int</span>
</dt>
<dd>Keepalive time in seconds for MQTT</dd>
</dl>
<h3>Details</h3>
<p>
The GCP IoT Core allows one to send messages from the device to the Cloud. The transmission can occur over either TCP/IP or MQTT.
The GCP IoT Core allows one to receive messages to the device from the Cloud. The transmission can occur over either TCP/IP or MQTT. Standard messages received comes from the 'config' and the 'commands' topics
In order to manage such a hub, we need to identify that device. The properties to identify it are the combination of:
<ul>
<li><code>project id</code> - The project hosting the registry.</li>
<li><code>region</code> - The region in which the registry is defined.</li>
<li><code>registry id</code> - The identity of the registry.</li>
<li><code>device id</code> - The identity of the device.</li>
</ul>
</p>
<p>
The device must also authenticate itself and needs to be supplied a private key corresponding to the public key associated with the device in the registry.
EMITTER: The <code>msg.payload</code> field is the content that is sent as telemetry.
RECEIVER: The <code>topic</code> field and the <code>message</code> field are received from the cloud.
</p>
</script>
<script type="text/javascript">
RED.nodes.registerType("google-cloud-iot message-hub", {
"category": "GCP",
"defaults": {
"projectId": { "required": true },
"region": { "required": true },
"registryId": { "required": true },
"deviceId": { "required": true },
// "subfolder": { "required": false },
"qos": { "required": true },
"keepalive": { "required": true },
"name": { "value": "", "required": false },
"privateKey": { "type": "google-cloud-private-key", "required": true },
"transport": { "value": "MQTT", "required": false }
},
"inputs": 1,
"outputs": 1,
"icon": "iot.png",
"align": "left",
"color": "#3FADB5",
"label": function () {
return this.name || this.topic || "iot message-hub";
},
"paletteLabel": "iot message hub"
});
</script>