Skip to content

Commit 0fe30cf

Browse files
authored
Merge pull request #8 from jazonshou/jazonshou-patch-1
Update README.md
2 parents e56be87 + d3039c7 commit 0fe30cf

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,12 @@ Use the [PROS CLI](https://github.com/purduesigbots/pros-cli/releases) to instal
2424
#include "Graphy/Grapher.hpp"
2525

2626
// Create grapher
27-
std::shared_ptr<graphy::AsyncGrapher> grapher(new graphy::AsyncGrapher("Flywheel Velocity vs. Time"));
27+
std::shared_ptr<graphy::AsyncGrapher> grapher(
28+
new graphy::AsyncGrapher("Flywheel Velocity vs. Time"));
2829

2930
// Add data types
30-
grapher->addDataType("Desired Vel", COLOR_ORANGE);
31-
grapher->addDataType("Actual Vel", COLOR_AQUAMARINE);
31+
grapher->addDataType("Desired Vel", pros::c::COLOR_ORANGE);
32+
grapher->addDataType("Actual Vel", pros::c::COLOR_AQUAMARINE);
3233

3334
// Start grapher task
3435
grapher->startTask();

0 commit comments

Comments
 (0)