forked from node-red/node-red-nodes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
55-dweetio.html
80 lines (73 loc) · 2.73 KB
/
55-dweetio.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
<script type="text/x-red" data-template-name="dweetio out">
<div class="form-row">
<label for="node-input-thing"><i class="fa fa-flag"></i> Thing</label>
<input type="text" id="node-input-thing" placeholder="my-globally-unique-device-id">
</div>
<br/>
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
</script>
<script type="text/x-red" data-help-name="dweetio out">
<p>Sends the <code>msg.payload</code> to Dweet.io</p>
<p>Optionally uses <code>msg.thing</code> to set the thing id, if not already set in the properties.</p>
<p>You need to make the thing id unique - you are recommended to use a GUID.<p>
<p>For further info see the <a href="https://dweet.io/" target="_new">Dweet.io website</a>.</p>
</script>
<script type="text/javascript">
RED.nodes.registerType('dweetio out',{
category: 'output',
defaults: {
thing: {value:""},
name: {value:""}
},
color:"#d7c9a0",
inputs:1,
outputs:0,
icon: "arrow.png",
align: "right",
label: function() {
return this.name||this.title||"dweetio";
},
labelStyle: function() {
return this.name?"node_label_italic":"";
}
});
</script>
<script type="text/x-red" data-template-name="dweetio in">
<div class="form-row">
<label for="node-input-thing"><i class="fa fa-flag"></i> Thing</label>
<input type="text" id="node-input-thing" placeholder="my-globally-unique-device-id">
</div>
<br/>
<div class="form-row">
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
</script>
<script type="text/x-red" data-help-name="dweetio in">
<p>Listens for messages from Dweet.io</p>
<p>The thing id should be globally unique as they are all public - you are recommended to use a GUID.<p>
<p>The Thing ID is set into <code>msg.dweet</code>, and the timesamp into <code>msg.created</code>.</p>
<p>For further info see the <a href="https://dweet.io/" target="_new">Dweet.io website</a>.</p>
</script>
<script type="text/javascript">
RED.nodes.registerType('dweetio in',{
category: 'input',
defaults: {
thing: {value:""},
name: {value:""}
},
color:"#d7c9a0",
inputs:0,
outputs:1,
icon: "arrow.png",
label: function() {
return this.name||this.title||"dweetio";
},
labelStyle: function() {
return this.name?"node_label_italic":"";
}
});
</script>