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

Creation of Gripper Class #5

Open
wants to merge 9 commits into
base: subsystem/gripper
Choose a base branch
from
Open

Creation of Gripper Class #5

wants to merge 9 commits into from

Conversation

brbrbre
Copy link

@brbrbre brbrbre commented Mar 20, 2025

No description provided.

@afr2903 afr2903 changed the base branch from main to subsystem/gripper March 21, 2025 02:57
@htovarm7 htovarm7 requested a review from afr2903 March 21, 2025 03:24
@@ -0,0 +1,42 @@
/*
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove "Class" from the folder name, just Gripper

#define SERVO_PIN 9
#define IN1 7
#define IN2 8
#define PWM 6
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When we pull changes from dev, move this to Pin class made by hector


// Class methods
void attach(); // Configure the pins and connect the servo
void open(); // Moves servo to open position (90°)
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 functions should be named as CamelCase

private:
Servo servo; // Servo object to control the servo
int in1, in2, pwm; // Control pins for the motor
int servoPin; // Pin connected to servo
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 data class members should be named as snake_case_ (note the trailing underscore)

: servoPin(servoPin), in1(in1), in2(in2), pwm(pwm) {}

// Method to configure the gripper pins
void Gripper::attach() {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd change this to init since attach is not a very intuitive name

digitalWrite(in1, HIGH); // Activate motor direction
digitalWrite(in2, LOW); // Set the direction of rotation
analogWrite(pwm, 255);
delay(3000);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Put the delay time in a constant defined in theGripper.h class, to change the duration directly in the constant if desired

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