43 lines
797 B
JavaScript
43 lines
797 B
JavaScript
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) => {
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|