Skip to content
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

Open
wants to merge 3 commits into
base: subsystem/elevator
Choose a base branch
from
Open

Conversation

BlueE-05
Copy link

No description provided.

Copy link
Member

@afr2903 afr2903 left a 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
Copy link
Member

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);
Copy link
Member

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
Copy link
Member

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
Copy link
Member

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)
Copy link
Member

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants