-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
19 lines (16 loc) · 1013 Bytes
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
== Directories
A basic Roby application has the following directories:
config:: configuration files. config/init.rb is the main configuration file (loaded
by all robots). Robot-specific configuration is in config/ROBOTNAME.rb.
The main Roby configuration file is config/roby.yml. The default file
describes all available configuration options.
models/planners:: planner models. Global planners (shared by all robots) are in
planners/. Robot-specific planners are in planners/ROBOTNAME/
models/tasks:: task models
scripts/controllers:: robot controllers. These files are supposed to start the basic robot
services, to make the robot ready. A robot shall have a controllers/ROBOTNAME.rb
file which does that.
data:: where all data files are. See #find_data.
scripts:: various scripts needed to run and debug a Roby application
The basic directory structure, and the global files, are installed by <tt>roby init</tt>. Basic
robot files can be added by <tt>roby robot ROBOTNAME</tt>