Closed Jeffrey-Wang closed 7 years ago
Ah, that second point was part of how I was planning to preserve the current control mode. I ended up doing that within TalonTest so I'll put those back.
EDIT: Oh, wait, I misunderstood the breaks. I was reading them like return statements.
printf("Encoder test: " << std::to_string(chosen->GetAnalogIn()).c_str() << "\n");
Should be
std::cout << "Encoder test: " << chosen->GetAnalogIn() << std::endl;
Alright, it should be good to go.
61