Testpanel with new thermometer komponent

This commit is contained in:
rasta5man 2024-12-02 18:35:11 +01:00
parent 31b5dbba5c
commit ba4a11a99a
39 changed files with 6415 additions and 2952 deletions

43
flow/empty.js Normal file
View file

@ -0,0 +1,43 @@
exports.id = 'id_bez_pomlcky';
exports.title = 'nazov';
exports.version = '1.0.0';
exports.group = 'Worksys';
exports.color = '#2134B0';
exports.input = 1;
exports.output = ["red", "white"];
exports.click = false;
exports.author = 'Daniel Segeš';
exports.icon = 'bolt';
exports.options = { edge: "undefined" };
//exports.npm = ['serialport'];
exports.html = `<div class="padding">
<div class="row">
<div class="col-md-6">
<div data-jc="textbox" data-jc-path="edge" data-jc-config="placeholder:undefined;required:true" class="m">CSV Import</div>
</div>
</div>
</div>`;
exports.readme = `# readme`;
exports.install = function(instance) {
instance.on("close", () => {
})
instance.on("data", (flowdata) => {
})
}