ROBOTC Interface
From ROBOTC API Guide
Tutorials → ROBOTC Interface
Contents |
Overview
| ROBOTC for Mindstorms is an Integrated Development Environment. It has been developed to provide as much support as possible for the platforms it is compatible with. The ROBOTC interface will modify itself to accommodate the functionality found in your controller. ROBOTC extends the ‘C’ programming language with a number of built-in variables and functions to provide control over a robot’s hardware devices, i.e. the motors and sensors.
|
Editor
| This is the part of the interface where the user can write code. |
Code Templates / Function Library
| This portion of the interface allows user to see all the functions available in ROBOTC at their user level. Portions of code from the "Function Library" can be dragged into the Editor. |
Main Menu / Toolbar
| This area allows you to perform basic tasks (saving, copy & pasting, undo, etc.), switch between multiple open programs using the tabbed interface, and access all of ROBOTC's additional functionality through the various menus. |
Code Editor
Writing Code
| Writing Code is the primary focus of ROBOTC, being a C-Based development environment. The ROBOTC Code Editor provides some visual assistance while programming with the use of line numbers and color coding: Normal Text is displayed as black text. Normal text is used for variable and function names that are user-defined and not recognized by the compiler as reserved words. Comments are displayed as green text . Comment are any bits of text in a program prefaced with a "//" or a "/*". This "commented text" is not considered code and is ignored when the compiler is generating byte-code to send to the robot controller. Reserved Words/Pre-Defined Functions (int, motor) are displayed as bold blue text and italicized blue text. Constants and Parameters (127, port1) are displayed as red text. Syntax and Operands (+, -, *, {, <, [, etc.) are displayed as light red text. |
Error Display
Breakpoints
Status Bar
The Status Bar gives you information about the ROBOTC editor and the current program.
|










