-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinvert.html
More file actions
158 lines (145 loc) · 4.3 KB
/
invert.html
File metadata and controls
158 lines (145 loc) · 4.3 KB
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
<!--
Copyright 2016 IBM Corp.
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/x-red" data-template-name="Invert">
<div class="form-row">
<label for="node-input-topic"><i class="fa fa-tasks"></i> Topic</label>
<input type="text" id="node-input-topic" placeholder="topic">
</div>
</script>
<script type="text/x-red" data-help-name="Invert">
<p>A node to invert numerical and boolean inputs</p>
<p>Inputs: msg.payload with any of the following values</p>
<ul>
<li>1/0</li>
<li>on/off</li>
<li>true/false</li>
</ul>
<p>Outputs are always 1 or 0 and the inverse of the input.</p>
</script>
<script type="text/javascript">
RED.nodes.registerType('Invert',{
category: 'logic',
color: 'grey',
defaults: {
topic: {value: ""}
},
inputs: 1,
outputs: 1,
icon: 'alert.png',
label: 'Invert'
});
</script>
<script type="text/x-red" data-template-name="Or">
<div class="form-row">
<label for="node-input-topic"><i class="fa fa-tasks"></i> Topic</label>
<input type="text" id="node-input-topic" placeholder="Topic">
</div>
<div class="form-row">
<label for="node-input-inputCount"><i class="fa fa-tasks"></i> # inputs</label>
<input type="text" id="node-input-inputCount" placeholder="Inputs">
</div>
</script>
<script type="text/x-red" data-help-name="Or">
<p>A 'OR' gate node</p>
<p>Inputs: msg.payload with any of the following values:</p>
<ul>
<li>1/0</li>
<li>on/off</li>
<li>true/false</li>
</ul>
<p>Inputs are distinguished by topic and it will consider all inputs
until <i># inputs</i> is reached. Subsquent messages with matching
topics replace earlier values.</p>
<p>Outputs are always 1 or 0</p>
</script>
<script type="text/javascript">
RED.nodes.registerType('Or',{
category: 'logic',
color: 'grey',
defaults: {
topic: {value: ""},
inputCount: {value: 2}
},
inputs: 1,
outputs: 1,
icon: 'or.png',
label: 'Or'
});
</script>
<script type="text/x-red" data-template-name="And">
<div class="form-row">
<label for="node-input-topic"><i class="fa fa-tasks"></i> Topic</label>
<input type="text" id="node-input-topic" placeholder="Topic">
</div>
<div class="form-row">
<label for="node-input-inputCount"><i class="fa fa-tasks"></i> # inputs</label>
<input type="text" id="node-input-inputCount" placeholder="Inputs">
</div>
</script>
<script type="text/x-red" data-help-name="And">
<p>A 'AND' gate node</p>
<p>Inputs: msg.payload with any of the following values:</p>
<ul>
<li>1/0</li>
<li>on/off</li>
<li>true/false</li>
</ul>
<p>Inputs are distinguished by topic and will wait for the <i># inputs</i>
messages to arrive before giving an output. Subsquent messages with matching
topics replace earlier values.</p>
<p>Outputs are always 1 or 0</p>
</script>
<script type="text/javascript">
RED.nodes.registerType('And',{
category: 'logic',
color: 'grey',
defaults: {
inputCount: {value: 2}
},
inputs: 1,
outputs: 1,
icon: 'and.png',
label: 'And'
});
</script>
<script type="text/x-red" data-template-name="Equals">
<div class="form-row">
<label for="node-input-topic"><i class="fa fa-tasks"></i> Topic</label>
<input type="text" id="node-input-topic" placeholder="Topic">
</div>
</script>
<script type="text/x-red" data-help-name="Equals">
<p>A node to compare 2 inputs based on <i>msg.topic</i>. After
2 distinct messags are recieved mesages with different topics
will be ignored.</p>
<p>Inputs: msg.payload with any of the following values:</p>
<ul>
<li>1/0</li>
<li>on/off</li>
<li>true/false</li>
</ul>
<p>Outputs are always 1 or 0</p>
</script>
<script type="text/javascript">
RED.nodes.registerType('Equals',{
category: 'logic',
color: 'grey',
defaults: {
topic: {value: ""}
},
inputs: 1,
outputs: 1,
icon: 'equals.png',
label: 'Equals'
});
</script>