Просмотр исходного кода

add missing decimal definitions

bug-decimal-undefined
John Robinson 4 лет назад
Родитель
Сommit
cfdb0ced68
Не найден GPG ключ соответствующий данной подписи
3 измененных файлов: 3 добавлений и 0 удалений
  1. +1
    -0
      boolean-logic-ultimate/BlinkerUltimate.js
  2. +1
    -0
      boolean-logic-ultimate/FilterUltimate.js
  3. +1
    -0
      boolean-logic-ultimate/InterruptFlowUltimate.js

+ 1
- 0
boolean-logic-ultimate/BlinkerUltimate.js Просмотреть файл

@@ -3,6 +3,7 @@ module.exports = function (RED) {
RED.nodes.createNode(this, config);
this.config = config;
var node = this;
var decimal = /^\s*[+-]{0,1}\s*([\d]+(\.[\d]*)*)\s*$/
setNodeStatus({ fill: "grey", shape: "ring", text: "|| Off" });
node.tBlinker = null;// Timer Blinker
node.blinkfrequency = typeof config.blinkfrequency === "undefined" ? 500 : config.blinkfrequency;

+ 1
- 0
boolean-logic-ultimate/FilterUltimate.js Просмотреть файл

@@ -3,6 +3,7 @@ module.exports = function(RED) {
RED.nodes.createNode(this,config);
this.config = config;
var node = this;
var decimal = /^\s*[+-]{0,1}\s*([\d]+(\.[\d]*)*)\s*$/
setNodeStatus( {fill: "grey" ,shape: "dot" ,text: "Waiting"});
this.on('input', function (msg) {
var sTopic = node.config.name;

+ 1
- 0
boolean-logic-ultimate/InterruptFlowUltimate.js Просмотреть файл

@@ -3,6 +3,7 @@ module.exports = function (RED) {
RED.nodes.createNode(this, config);
this.config = config;
var node = this;
var decimal = /^\s*[+-]{0,1}\s*([\d]+(\.[\d]*)*)\s*$/
setNodeStatus({ fill: "green", shape: "ring", text: "-> pass" });
node.bInviaMessaggio = true; // Send the message or not
node.currentMsg = {}; // Stores current payload

Загрузка…
Отмена
Сохранить