Skip to content

Commit 8ba9e54

Browse files
committed
no message
1 parent a5b9210 commit 8ba9e54

File tree

4 files changed

+71
-2
lines changed

4 files changed

+71
-2
lines changed
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<script type="text/javascript">
2+
RED.nodes.registerType('labelSlidingWindowMaxSelector',{
3+
category: 'postprocessing',
4+
color: '#D8BFD8',
5+
defaults: {
6+
name: {value:""},
7+
windowSize: {value:"",required:true,validate:RED.validators.number()},
8+
minimumCount: {value:"",required:true,validate:RED.validators.number()}
9+
},
10+
inputs:1,
11+
outputs:1,
12+
icon: "function.png",
13+
label: function() {
14+
return this.name||"labelSlidingWindowMaxSelector";
15+
}
16+
});
17+
</script>
18+
19+
<script type="text/x-red" data-template-name="labelSlidingWindowMaxSelector">
20+
<div class="form-row">
21+
<label for="node-input-name"><i class="icon-tag"></i>Name</label>
22+
<input type="text" id="node-input-name" placeholder="Name">
23+
</div>
24+
25+
<div class="form-row">
26+
<label for="node-input-windowSize"><i class="icon-tag"></i>windowSize</label>
27+
<input type="text" id="node-input-windowSize">
28+
</div>
29+
30+
<div class="form-row">
31+
<label for="node-input-minimumCount"><i class="icon-tag"></i>minimumCount</label>
32+
<input type="text" id="node-input-minimumCount">
33+
</div>
34+
</script>
35+
36+
<script type="text/x-red" data-help-name="labelSlidingWindowMaxSelector">
37+
<p>high pass filter</p>
38+
</script>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
module.exports = function(RED) {
2+
3+
function LabelSlidingWindowMaxSelector(config) {
4+
RED.nodes.createNode(this,config);
5+
var node = this;
6+
node.on('input', function(msg) {
7+
//TODO
8+
});
9+
}
10+
11+
RED.nodes.registerType("labelSlidingWindowMaxSelector",LabelSlidingWindowMaxSelector);
12+
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"name": "node-red-contrib-labelSlidingWindowMaxSelector",
3+
"version": "0.0.1",
4+
"description": "Butterworth high pass filter",
5+
"dependencies": {},
6+
"keywords": [
7+
"node-red"
8+
],
9+
"node-red": {
10+
"nodes": {
11+
"labelSlidingWindowMaxSelector": "labelSlidingWindowMaxSelector.js"
12+
}
13+
}
14+
}

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,12 @@ Exported applications can be loaded and executed in the Wearables Development To
5050
## About
5151
My name is Juan Haladjian. I developed the WDK-RED platform as part of my post-doc at the Technical University of Munich. Feel free to contact me with questions or feature requests. The project is under an MIT license. You are welcome to use the code in this repository, extend it and redistribute it for any purpose, as long as you give credit for it by copying the *LICENSE.txt file* to any copy of this software.
5252

53-
Website: [www.jhaladjian.com](www.jhaladjian.com)
53+
Feel free to contact me with feedback or feature requests.
54+
55+
Website: [www.jhaladjian.com](https://www.jhaladjian.com)
56+
5457
Academic Website: [http://in.tum.de/~haladjia](http://home.in.tum.de/~haladjia/)
55-
LinkedIn: [www.linkedin.com/in/juan-haladjian](www.linkedin.com/in/juan-haladjian)
58+
59+
LinkedIn: [www.linkedin.com/in/juan-haladjian](https://www.linkedin.com/in/juan-haladjian)
60+
5661

0 commit comments

Comments
 (0)