mirror of
https://github.com/node-red/node-red-nodes.git
synced 2025-03-01 10:37:43 +00:00
Bump arduino pre-req and fix listing
This commit is contained in:
parent
581477893e
commit
c9faed7876
@ -53,7 +53,7 @@
|
||||
name: {value:""},
|
||||
pin: {value:"",validate: function(v) {
|
||||
var ct = $("#node-input-state").val() || this.state;
|
||||
return ct === 'STRING' || (v != '');
|
||||
return ct === 'STRING' || (v !== '');
|
||||
}},
|
||||
state: {value:"INPUT",required:true},
|
||||
arduino: {type:"arduino-board"}
|
||||
@ -114,7 +114,7 @@
|
||||
name: {value:""},
|
||||
pin: {value:"",validate: function(v) {
|
||||
var ct = $("#node-input-state").val() || this.state;
|
||||
return ct === 'STRING' || (v != '');
|
||||
return ct === 'STRING' || (v !== '');
|
||||
}},
|
||||
state: {value:"",required:true},
|
||||
arduino: {type:"arduino-board"}
|
||||
|
@ -1,9 +1,9 @@
|
||||
{
|
||||
"name" : "node-red-node-arduino",
|
||||
"version" : "0.0.6",
|
||||
"version" : "0.0.7",
|
||||
"description" : "A Node-RED node to talk to an Arduino running firmata",
|
||||
"dependencies" : {
|
||||
"arduino-firmata" : "0.3.3"
|
||||
"arduino-firmata" : "0.3.4"
|
||||
},
|
||||
"repository" : {
|
||||
"type":"git",
|
||||
|
Loading…
x
Reference in New Issue
Block a user