Skip to content
This repository has been archived by the owner on Jul 11, 2024. It is now read-only.

Commit

Permalink
Fix Comment Typo (#105), Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackman3323 committed Jan 26, 2024
1 parent b4ab80c commit 697ee37
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
14 changes: 5 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,15 @@ ARMS is a [PROS](https://pros.cs.purdue.edu/) library that makes writing autonom

## Installing ARMS

1. Download the most recent [template](https://github.com/purduesigbots/ARMS/releases)
1. Register the PROS mainline template depot whith your local CLI by running the following command in the PROS integrated terminal: `pros conduct add-depot mainline https://purduesigbots.github.io/pros-mainline/pros-mainline.json`

2. Run this command from terminal `pros c fetch [email protected].0.zip`
2. Apply the latest version of ARMS to your project by running the following command in the PROS integrated terminal: `pros c apply [email protected].1`

3. `cd` into your pros project directory in your terminal
3. Put `#include "ARMS/api.h"` in your main.h

4. Apply the library to the project `pros c apply ARMS`
4. Put `#include "ARMS/config.h"` in your main.cpp

5. Put `#include "ARMS/api.h"` in your main.h

6. Put `#include "ARMS/config.h"` in your main.cpp

7. Call `arms::init()` in your initialize()
5. Call `arms::init()` in your initialize()


## Quick start guide
Expand Down
2 changes: 1 addition & 1 deletion include/ARMS/chassis.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ extern std::shared_ptr<pros::Motor_Group> rightMotors;
void setBrakeMode(pros::motor_brake_mode_e_t b);

/**
* Return true of the chassis is not moving
* Return true if the chassis is not moving
*/
bool settled();

Expand Down

0 comments on commit 697ee37

Please sign in to comment.