mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
Bump arduino pre-req and fix listing
This commit is contained in:
parent
581477893e
commit
c9faed7876
@ -52,8 +52,8 @@
|
|||||||
defaults: {
|
defaults: {
|
||||||
name: {value:""},
|
name: {value:""},
|
||||||
pin: {value:"",validate: function(v) {
|
pin: {value:"",validate: function(v) {
|
||||||
var ct = $("#node-input-state").val() || this.state;
|
var ct = $("#node-input-state").val() || this.state;
|
||||||
return ct === 'STRING' || (v != '');
|
return ct === 'STRING' || (v !== '');
|
||||||
}},
|
}},
|
||||||
state: {value:"INPUT",required:true},
|
state: {value:"INPUT",required:true},
|
||||||
arduino: {type:"arduino-board"}
|
arduino: {type:"arduino-board"}
|
||||||
@ -113,8 +113,8 @@
|
|||||||
defaults: {
|
defaults: {
|
||||||
name: {value:""},
|
name: {value:""},
|
||||||
pin: {value:"",validate: function(v) {
|
pin: {value:"",validate: function(v) {
|
||||||
var ct = $("#node-input-state").val() || this.state;
|
var ct = $("#node-input-state").val() || this.state;
|
||||||
return ct === 'STRING' || (v != '');
|
return ct === 'STRING' || (v !== '');
|
||||||
}},
|
}},
|
||||||
state: {value:"",required:true},
|
state: {value:"",required:true},
|
||||||
arduino: {type:"arduino-board"}
|
arduino: {type:"arduino-board"}
|
||||||
@ -166,7 +166,7 @@
|
|||||||
$("#node-config-lookup-serial-icon").removeClass('spinner');
|
$("#node-config-lookup-serial-icon").removeClass('spinner');
|
||||||
$("#node-config-lookup-serial").removeClass('disabled');
|
$("#node-config-lookup-serial").removeClass('disabled');
|
||||||
var ports = [];
|
var ports = [];
|
||||||
$.each(data, function(i, port){
|
$.each(data, function(i, port) {
|
||||||
ports.push(port);
|
ports.push(port);
|
||||||
});
|
});
|
||||||
$("#node-config-input-device").autocomplete({
|
$("#node-config-input-device").autocomplete({
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
{
|
{
|
||||||
"name" : "node-red-node-arduino",
|
"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",
|
"description" : "A Node-RED node to talk to an Arduino running firmata",
|
||||||
"dependencies" : {
|
"dependencies" : {
|
||||||
"arduino-firmata" : "0.3.3"
|
"arduino-firmata" : "0.3.4"
|
||||||
},
|
},
|
||||||
"repository" : {
|
"repository" : {
|
||||||
"type":"git",
|
"type":"git",
|
||||||
|
Loading…
Reference in New Issue
Block a user