Skip to content

Commit 33e6bf7

Browse files
committed
cleanup
1 parent 8506d0b commit 33e6bf7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Arduino_AlvikCarrier.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,8 @@ class Arduino_AlvikCarrier{
220220
// Kinematics
221221
void updateKinematics(); // update pose/velocity of the robot and controls
222222
void drive(const float linear, const float angular); // set mm/s and deg/s of the robot
223-
float getLinearVelocity();
224-
float getAngularVelocity();
223+
float getLinearVelocity(); // get linear velocity of the robot in mm/s
224+
float getAngularVelocity(); // get angular velocity of the robot in deg/s
225225

226226
void move(const float distance); // move of distance millimeters
227227
void rotate(const float angle); // rotate of angle degrees
@@ -232,7 +232,7 @@ class Arduino_AlvikCarrier{
232232

233233
void disableKinematicsMovement();
234234
bool isTargetReached();
235-
uint8_t getKinematicsMovement(); // get which kind of motion is running in kinematic control
235+
uint8_t getKinematicsMovement(); // get which kind of motion is running in kinematic control
236236

237237

238238
};

0 commit comments

Comments
 (0)