forked from hardillb/node-red-node-joystick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path99-joystick.html
58 lines (52 loc) · 2.19 KB
/
99-joystick.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
<!--
Copyright 2015 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="JoyStick">
<div class="form-row">
<label for="node-input-topic"><i class="icon-tag"></i> Topic</label>
<input type="text" id="node-input-topic" placeholder="optional topic">
</div>
<div class="form-row">
<label for="node-input-filter"><i class="icon-tag"></i> Raw Filter</label>
<input type="text" id="node-input-filter" placeholder="hex mask for raw data. eg 0xfff">
</div>
<div class="form-row">
<label for="node-input-name"><i class="icon-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
<div id="node-input-tip" class="form-tips">Setting the filter to a non-zero value will enable continuous output of raw detected values.</div>
</script>
<script type="text/x-red" data-help-name="JoyStick">
<p>Joystick input device.</p>
<p>By default it outputs a <b>msg.payload</b> <i>object</i> on change of any joystick switch.</p>
<p>If you set a bit mask it will instead output raw values as an <i>int</i> continuously whenever a non-zero value is detected.</p>
</script>
<script type="text/javascript">
RED.nodes.registerType('JoyStick',{
category: 'input',
color:"GoldenRod",
defaults: {
name: {value:""},
filter: {value:"0"},
topic: {value:"joystick"}
},
inputs:0,
outputs:1,
icon: "arrow.png",
label: function() {
return this.name||this.topic||"joystick";
},
labelStyle: function() {
return this.name?"node_label_italic":"";
}
});
</script>