Waiting for missing types to be registered:

2,219 views
Skip to first unread message

James

unread,
Feb 9, 2017, 10:26:07 PM2/9/17
to Node-RED
hi

I'm new to node red and require certain types to be installed. Even after I went through the instruction and attempted to install the right nodes it still shows that they are missing.

Welcome to Node-RED
===================

10 Feb 14:05:57 - [info] Node-RED version: v0.16.2
10 Feb 14:05:57 - [info] Node.js  version: v6.9.5
10 Feb 14:05:57 - [info] Darwin 16.4.0 x64 LE
10 Feb 14:05:57 - [info] Loading palette nodes
10 Feb 14:05:57 - [info] Dashboard version 2.2.1 started at /ui
10 Feb 14:05:57 - [info] Settings file  : /Users/bavan/.node-red/settings.js
10 Feb 14:05:57 - [info] User directory : /Users/bavan/.node-red
10 Feb 14:05:57 - [info] Flows file     : /Users/bavan/.node-red/flows_Bavans-MacBook-Pro.local.json
10 Feb 14:05:57 - [info] Server now running at http://127.0.0.1:1880/
10 Feb 14:05:57 - [info] Waiting for missing types to be registered:
10 Feb 14:05:57 - [info]  - nodebot
10 Feb 14:05:57 - [info]  - gpio out

If anyone could help would really appreciated 

thanks

James 

Zenofmud

unread,
Feb 10, 2017, 5:10:04 PM2/10/17
to node...@googlegroups.com
Have you installed this on a MacBook? If so you won’t get the GPOI because it is (I believe) Raspberry Pi specific. not sure about the nodebot - what nodes are you using?

--
http://nodered.org
 
Join us on Slack to continue the conversation: http://nodered.org/slack
---
You received this message because you are subscribed to the Google Groups "Node-RED" group.
To unsubscribe from this group and stop receiving emails from it, send an email to node-red+u...@googlegroups.com.
To post to this group, send email to node...@googlegroups.com.
Visit this group at https://groups.google.com/group/node-red.
To view this discussion on the web, visit https://groups.google.com/d/msgid/node-red/fdca1202-8e80-49fa-92e6-20a189d4383b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Dave C-J

unread,
Feb 11, 2017, 12:31:36 AM2/11/17
to node...@googlegroups.com
Which directory were you in when you installed the nodebot node ? You must be in your Node-RED user directory. Usually this is ~/.node-red

James

unread,
Feb 12, 2017, 4:49:41 PM2/12/17
to Node-RED
Yes I've installed all the packages in the node red directory on my MacBook but still it seems to not register those particular types. Is there any extra packages I should be installing? 

Colin Law

unread,
Feb 12, 2017, 4:54:09 PM2/12/17
to node...@googlegroups.com
From the .node-red directory run
npm list nodebot
and see what it says. Also for the node-red-contrib-gpio if that is
the gpio node you are using.

Colin
> --
> http://nodered.org
>
> Join us on Slack to continue the conversation: http://nodered.org/slack
> ---
> You received this message because you are subscribed to the Google Groups
> "Node-RED" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to node-red+u...@googlegroups.com.
> To post to this group, send email to node...@googlegroups.com.
> Visit this group at https://groups.google.com/group/node-red.
> To view this discussion on the web, visit
> https://groups.google.com/d/msgid/node-red/fb03dc70-c39e-4e1a-9af0-7041252023f8%40googlegroups.com.

Dave C-J

unread,
Feb 12, 2017, 5:07:59 PM2/12/17
to node...@googlegroups.com
​good spot.. that is the node. Are there any errors when you run the install ? 
I just ran
      cd ~/.node-red
   npm i node-red-contrib-gpio
On my Mac with no problem

Mark Setrem

unread,
Feb 12, 2017, 5:16:51 PM2/12/17
to Node-RED
If you managed to install them without any errors and the nodes won't work, you probably need to open an issue on the GitHub site for those nodes.

James

unread,
Feb 12, 2017, 5:24:30 PM2/12/17
to Node-RED
Colin I tried listing nodebot and this is what I got:

/Users/bavan/.node-red
└── (empty)

Dave I also did the node-red-contrib-gpio and I'm getting a different message when I now start node red:

Welcome to Node-RED
===================

13 Feb 09:17:37 - [info] Node-RED version: v0.16.2
13 Feb 09:17:37 - [info] Node.js  version: v6.9.5
13 Feb 09:17:37 - [info] Darwin 16.4.0 x64 LE
13 Feb 09:17:37 - [info] Loading palette nodes
13 Feb 09:17:38 - [info] Dashboard version 2.2.1 started at /ui
13 Feb 09:17:39 - [info] Settings file  : /Users/bavan/.node-red/settings.js
13 Feb 09:17:39 - [info] User directory : /Users/bavan/.node-red
13 Feb 09:17:39 - [info] Flows file     : /Users/bavan/.node-red/flows_Bavans-MacBook-Pro.local.json
13 Feb 09:17:39 - [info] Server now running at http://127.0.0.1:1880/
13 Feb 09:17:39 - [info] Starting flows
1486937859320 Device(s) Firmata
13 Feb 09:17:39 - [info] Started flows
13 Feb 09:17:39 - [error] [nodebot:USB serial] Error: Error: No such file or directory, cannot open /dev/cu.usbmodem14411/ds
13 Feb 09:17:42 - [info] [mqtt-broker:4a719403.73609c] Connected to broker: mqtt://test.mosquitto.org:1883
13 Feb 09:17:44 - [error] [nodebot:USB serial] Error: Port is not open
13 Feb 09:17:44 - [error] [nodebot:USB serial] Error: Port is not open

Is this because I have to install a package to find the particular port? Because I have ardiuno connected.


On Friday, February 10, 2017 at 2:26:07 PM UTC+11, James wrote:

Dave C-J

unread,
Feb 12, 2017, 6:05:54 PM2/12/17
to node...@googlegroups.com
That looks like it is trying to work - it is trying to open a serial port - which is the default...  (though it would imply you already had configured it once as the config node is there...). Should be nothing left to install.

Are the nodes actually there now (refresh the browser). ?

James

unread,
Feb 12, 2017, 6:12:34 PM2/12/17
to Node-RED
Thanks Dave it does show the GPIO input/output now when I refresh the page. How do I go about getting it to connect with the Arduino if its running on the default port?


On Friday, February 10, 2017 at 2:26:07 PM UTC+11, James wrote:

Dave C-J

unread,
Feb 12, 2017, 6:37:51 PM2/12/17
to node...@googlegroups.com
Make sure you have firmata loaded on arduino. Don't run the ide at same time as node-red. Read the node-red-contrib-gpio docs.
Reply all
Reply to author
Forward
0 new messages