ART v1.0-alpha
A Robot Template that raises the floor for VRC teams
Loading...
Searching...
No Matches
vex.h
Go to the documentation of this file.
1
16#include <math.h>
17#include <stdio.h>
18#include <stdlib.h>
19#include <string.h>
20
21#include "v5.h"
22#include "v5_vcs.h"
23
24extern vex::brain Brain;
25extern vex::controller Controller1;
27#define waitUntil(condition) \
28 do \
29 { \
30 wait(5, msec); \
31 } while (!(condition))
32
33#define repeat(iterations) \
34 for (int iterator = 0; iterator < iterations; iterator++)
vex::brain Brain
vex::controller Controller1