File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
docs/simplefoc_libraries/tools Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -72,14 +72,14 @@ void setup(){
7272 // add the motor to the commander interface
7373 // The letter id (here 'M') of the motor
7474 char motor_id = 'M';
75- command.add(motor_id,doMotor,' motor' );
75+ command.add(motor_id,doMotor," motor" );
7676 // tell the motor to use the monitoring
7777 motor.useMonitoring(Serial);
7878 // configuring the monitoring to be well parsed by the webcontroller
7979 motor.monitor_start_char = motor_id; // the same latter as the motor id in the commander
8080 motor.monitor_end_char = motor_id; // the same latter as the motor id in the commander
8181
82- commander .verbose = VerboseMode::machine_readable; // can be set using the webcontroller - optional
82+ command .verbose = VerboseMode::machine_readable; // can be set using the webcontroller - optional
8383 ...
8484
8585}
You can’t perform that action at this time.
0 commit comments