This commit is contained in:
vvzvlad 2023-10-02 21:33:26 +03:00
parent 12e3ab99b8
commit 6f5ab1fb6a
3 changed files with 42 additions and 4 deletions

View File

@ -1,18 +1,19 @@
{ {
"name": "node-red-contrib-combined-rn-thermostat", "name": "@vvzvlad/node-red-contrib-rn-combined-nodes",
"version": "1.0.0", "version": "0.0.1",
"description": "", "description": "",
"main": "index.js", "main": "index.js",
"keywords": [ "node-red" ],
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://gitea.vvzvlad.xyz/vvzvlad/node-red-contrib-combined-rn-thermostat" "url": "https://gitea.vvzvlad.xyz/vvzvlad/node-red-contrib-rn-combined-nodes"
}, },
"node-red" : { "node-red" : {
"nodes": { "nodes": {
"c-thermostat": "c-thermostat.js" "thermostat": "thermostat.js"
} }
}, },
"author": "vvzvlad", "author": "vvzvlad",

26
thermostat.html Normal file
View File

@ -0,0 +1,26 @@
<script type="text/javascript">
RED.nodes.registerType('lower-case',{
category: 'function',
color: '#a6bbcf',
defaults: {
name: {value:""}
},
inputs: 1,
outputs: 1,
icon: "file.svg",
label: function() {
return this.name||"lower-case";
}
});
</script>
<script type="text/html" data-template-name="lower-case">
<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/html" data-help-name="lower-case">
<p>A simple node that converts the message payloads into all lower-case characters</p>
</script>

11
thermostat.js Normal file
View File

@ -0,0 +1,11 @@
module.exports = function(RED) {
function LowerCaseNode(config) {
RED.nodes.createNode(this,config);
var node = this;
node.on('input', function(msg) {
msg.payload = msg.payload.toLowerCase();
node.send(msg);
});
}
RED.nodes.registerType("lower-case",LowerCaseNode);
}