19 lines
420 B
C++
19 lines
420 B
C++
using namespace vex;
|
|
|
|
extern brain Brain;
|
|
|
|
// VEXcode devices
|
|
extern drivetrain Drivetrain;
|
|
extern motor LiftMotor;
|
|
extern motor LiftMotor2;
|
|
extern motor TiltMotor;
|
|
extern controller Controller1;
|
|
extern motor IntakeR;
|
|
extern motor IntakeL;
|
|
|
|
/**
|
|
* Used to initialize code/tasks/devices added using tools in VEXcode Text.
|
|
*
|
|
* This should be called at the start of your int main function.
|
|
*/
|
|
void vexcodeInit( void ); |