You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Messages can be generated in a number of ways depending on the versions of ROS and Node.js you're using.
61
61
- catkin - works in ROS Kinetic and later for Node.js v6+.
62
-
```
62
+
```sh
63
63
$ catkin_make
64
64
OR
65
65
$ catkin build
66
66
```
67
67
-`loadAllPackages()` - One-time "build" call available through `rosnodejs` for versions of ROS before Kinetic and Node.js v6+. Should be called separately and in advance of processes attempting to use messages.
68
-
```
68
+
```js
69
69
constrosnodejs=require('rosnodejs');
70
70
rosnodejs.loadAllPackages();
71
71
```
72
72
- On the fly - all versions of ROS and Node.js 4.5+. When generating on the fly, messages can not be required until the node has initialized.
0 commit comments