i'm not sure about LabView, but with Java it's also the same command;
depending on the Control mode, the input will not have the same effect
for example, we used
"PercentVBus" during teleop, which ranges from -1 to 1
we used it like this
Code:
talon.set(0.7);
//this sets the voltage output to the motor to 70% of the battery
During autonomous, we used
"Position" , which ranges from 0 to 1024 (0V on the sensor to 3.3V)
we used it like this
Code:
talon.set(512);
//this sets the talon to 180 degrees, like a servo would do
I guess it's the same with Labview, but I might as well be wrong
