We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e56be87 + d3039c7 commit 0fe30cfCopy full SHA for 0fe30cf
README.md
@@ -24,11 +24,12 @@ Use the [PROS CLI](https://github.com/purduesigbots/pros-cli/releases) to instal
24
#include "Graphy/Grapher.hpp"
25
26
// Create grapher
27
-std::shared_ptr<graphy::AsyncGrapher> grapher(new graphy::AsyncGrapher("Flywheel Velocity vs. Time"));
+std::shared_ptr<graphy::AsyncGrapher> grapher(
28
+ new graphy::AsyncGrapher("Flywheel Velocity vs. Time"));
29
30
// Add data types
-grapher->addDataType("Desired Vel", COLOR_ORANGE);
31
-grapher->addDataType("Actual Vel", COLOR_AQUAMARINE);
+grapher->addDataType("Desired Vel", pros::c::COLOR_ORANGE);
32
+grapher->addDataType("Actual Vel", pros::c::COLOR_AQUAMARINE);
33
34
// Start grapher task
35
grapher->startTask();
0 commit comments