Skip to content

Commit

Permalink
Make a map for each driver
Browse files Browse the repository at this point in the history
  • Loading branch information
Noah Gleason committed Oct 19, 2017
1 parent 7006f4a commit f96580b
Show file tree
Hide file tree
Showing 3 changed files with 802 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ public void robotInit() {
try {
//Read the yaml file with SnakeYaml so we can use anchors and merge syntax.
// Map<?, ?> normalized = (Map<?, ?>) yaml.load(new FileReader(RESOURCES_PATH+"ballbasaur_map.yml"));
Map<?, ?> normalized = (Map<?, ?>) yaml.load(new FileReader(RESOURCES_PATH + "calcifer_map.yml"));
// Map<?, ?> normalized = (Map<?, ?>) yaml.load(new FileReader(RESOURCES_PATH + "naveen_map.yml"));
Map<?, ?> normalized = (Map<?, ?>) yaml.load(new FileReader(RESOURCES_PATH + "nate_map.yml"));
// Map<?, ?> normalized = (Map<?, ?>) yaml.load(new FileReader(RESOURCES_PATH + "calcifer_outreach_map.yml"));
YAMLMapper mapper = new YAMLMapper();
//Turn the Map read by SnakeYaml into a String so Jackson can read it.
Expand Down
Loading

0 comments on commit f96580b

Please sign in to comment.