You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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 ); |