-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Elevator class and test script #3
base: subsystem/elevator
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice work!! Just check the nitpicks for the style conventions 🚀
|
||
const float stepper_radius = 5.0; // Pulley radius in cm //! no se cual sea el radio correcto | ||
|
||
// Method to convert a distance in centimeters to the corresponding number of steps. Returns number of steps required to move the given distance |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think these inline comments are a bit redundant, since the name of the variable it's self explanatory, it may look cleaner without the comments and line breaks
void move_up(float distance); | ||
|
||
// Method to move the elevator down by a specified distance in cm | ||
void move_down(float distance); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
According to the C++ style guide, function names should be named with CamelCase.
|
||
class Elevator { | ||
private: | ||
Stepper left_stepper; // Stepper motor for the left side |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
According to the C++ style guide variables which are class members should be snake_case_
with a trailing underscore, just add the underscore
|
||
const int steps_per_revolution; // Steps per revolution of the stepper motors | ||
|
||
const float stepper_radius = 5.0; // Pulley radius in cm //! no se cual sea el radio correcto |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If it's a constant, rename it to kStepperRadius
according to the C++ style guide
#include "Elevator.h" | ||
|
||
//* Constructor | ||
Elevator::Elevator(int stepsPerRevolution, int lPin1, int lPin2, int lPin3, int lPin4, int rPin1, int rPin2, int rPin3, int rPin4) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Even if the definition is longer, change the parameter to be full name (in general try to avoid abbreviations), for example leftPin1
. You can also add line breaks to avoid having a long line
No description provided.