소스 검색

add missing decimal definitions

bug-decimal-undefined
John Robinson 4 년 전
부모
커밋
cfdb0ced68
No known key found for this signature in database
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

Loading…
취소
저장