Skip to content

Commit

Permalink
Lowercase enum
Browse files Browse the repository at this point in the history
  • Loading branch information
kunwarsahni01 committed Oct 9, 2020
1 parent 4b287c3 commit 0e277a0
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions include/pros/optical.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,7 @@ namespace pros {
namespace c {
#endif

typedef enum optical_direction_e {
NO_GESTURE = 0,
UP = 1,
DOWN = 2,
RIGHT = 3,
LEFT = 4,
} optical_direction_e_t;
typedef enum optical_direction_e { no_gesture = 0, up = 1, down = 2, right = 3, left = 4 } optical_direction_e_t;

typedef struct optical_rgb_s {
double red;
Expand Down

0 comments on commit 0e277a0

Please sign in to comment.