-
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
Creation of Gripper Class #5
base: subsystem/gripper
Are you sure you want to change the base?
Conversation
Gripper Class/Gripper.cpp
Outdated
@@ -0,0 +1,42 @@ | |||
/* |
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.
Remove "Class" from the folder name, just Gripper
#define SERVO_PIN 9 | ||
#define IN1 7 | ||
#define IN2 8 | ||
#define PWM 6 |
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.
When we pull changes from dev, move this to Pin
class made by hector
Gripper Class/Gripper.h
Outdated
|
||
// Class methods | ||
void attach(); // Configure the pins and connect the servo | ||
void open(); // Moves servo to open position (90°) |
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 functions should be named as CamelCase
Gripper Class/Gripper.h
Outdated
private: | ||
Servo servo; // Servo object to control the servo | ||
int in1, in2, pwm; // Control pins for the motor | ||
int servoPin; // Pin connected to servo |
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 data class members should be named as snake_case_
(note the trailing underscore)
Gripper Class/Gripper.cpp
Outdated
: servoPin(servoPin), in1(in1), in2(in2), pwm(pwm) {} | ||
|
||
// Method to configure the gripper pins | ||
void Gripper::attach() { |
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'd change this to init
since attach is not a very intuitive name
Gripper Class/Gripper.cpp
Outdated
digitalWrite(in1, HIGH); // Activate motor direction | ||
digitalWrite(in2, LOW); // Set the direction of rotation | ||
analogWrite(pwm, 255); | ||
delay(3000); |
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.
Put the delay time in a constant defined in theGripper.h
class, to change the duration directly in the constant if desired
No description provided.