-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from clearpathrobotics/0.2.0-RC
0.2.0
- Loading branch information
Showing
4 changed files
with
87 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,31 @@ | ||
# Represents a command for the pairs of RGB body lights on a CPR robot. | ||
|
||
# Dingo | ||
uint8 DINGO_LIGHTS_REAR_LEFT=0 | ||
uint8 DINGO_LIGHTS_FRONT_LEFT=1 | ||
uint8 DINGO_LIGHTS_FRONT_RIGHT=2 | ||
uint8 DINGO_LIGHTS_REAR_RIGHT=3 | ||
# Dingo 1.0 (D100) | ||
uint8 D100_LIGHTS_REAR_LEFT=0 | ||
uint8 D100_LIGHTS_FRONT_LEFT=1 | ||
uint8 D100_LIGHTS_FRONT_RIGHT=2 | ||
uint8 D100_LIGHTS_REAR_RIGHT=3 | ||
|
||
# Ridgeback | ||
uint8 RIDGEBACK_LIGHTS_FRONT_PORT_UPPER=0 | ||
uint8 RIDGEBACK_LIGHTS_FRONT_PORT_LOWER=1 | ||
uint8 RIDGEBACK_LIGHTS_FRONT_STARBOARD_UPPER=2 | ||
uint8 RIDGEBACK_LIGHTS_FRONT_STARBOARD_LOWER=3 | ||
uint8 RIDGEBACK_LIGHTS_REAR_PORT_UPPER=4 | ||
uint8 RIDGEBACK_LIGHTS_REAR_PORT_LOWER=5 | ||
uint8 RIDGEBACK_LIGHTS_REAR_STARBOARD_UPPER=6 | ||
uint8 RIDGEBACK_LIGHTS_REAR_STARBOARD_LOWER=7 | ||
# Dingo 1.5 (D150) | ||
uint8 D150_LIGHTS_REAR_LEFT=0 | ||
uint8 D150_LIGHTS_FRONT_LEFT=1 | ||
uint8 D150_LIGHTS_FRONT_RIGHT=2 | ||
uint8 D150_LIGHTS_REAR_RIGHT=3 | ||
|
||
# Warthog | ||
uint8 WARTHOG_LIGHTS_FRONT_LEFT=0 | ||
uint8 WARTHOG_LIGHTS_FRONT_RIGHT=1 | ||
uint8 WARTHOG_LIGHTS_REAR_LEFT=2 | ||
uint8 WARTHOG_LIGHTS_REAR_RIGHT=3 | ||
# Ridgeback (R100) | ||
uint8 R100_LIGHTS_FRONT_PORT_UPPER=0 | ||
uint8 R100_LIGHTS_FRONT_PORT_LOWER=1 | ||
uint8 R100_LIGHTS_FRONT_STARBOARD_UPPER=2 | ||
uint8 R100_LIGHTS_FRONT_STARBOARD_LOWER=3 | ||
uint8 R100_LIGHTS_REAR_PORT_UPPER=4 | ||
uint8 R100_LIGHTS_REAR_PORT_LOWER=5 | ||
uint8 R100_LIGHTS_REAR_STARBOARD_UPPER=6 | ||
uint8 R100_LIGHTS_REAR_STARBOARD_LOWER=7 | ||
|
||
# Warthog (W200) | ||
uint8 W200_LIGHTS_FRONT_LEFT=0 | ||
uint8 W200_LIGHTS_FRONT_RIGHT=1 | ||
uint8 W200_LIGHTS_REAR_LEFT=2 | ||
uint8 W200_LIGHTS_REAR_RIGHT=3 | ||
|
||
RGB[] lights |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters