Gripper – Robot Mechanical Arm Aluminum Metal Claws

  1. The degree of Freedom (DOF): 2
  2. Paw material: aluminum alloy
  3. Paw weight: about 68g (without motor)
  4. Claws overall length: 108mm (overall maximum length when closed paw)
  5. Claws overall width: 98mm (maximum overall width of the paw when open)
  6. Paw maximum opening angle: 55mm

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

Original price was: 370,00 EGP.Current price is: 350,00 EGP.

17 People watching this product now!

Payment Methods:

Description

This is Robot Manipulator Mechanical Arm Metal claws.

This kit is very useful to make a robotic arm that is used in many applications like move material from one place to another place (Weight not exceed 500 gm).

Note:

The package does not contain any servo Motor you have to buy it Separately.

Servo Motors 


Features :

  1. Paw Maximum Opening Angle: 55mm (without expansion board when the maximum opening angle spacing of 55mm, the largest expansion board after the installation is 95mm)
  2. The plank kit is very light
  3. Compatible with our MG996 Servo 

Package Includes :

1 x Robot Manipulator Mechanical Arm Metal Claws Normal Quality

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
Gripper servoSignal/VCC/GNDboard PWM-capable pin / 5V / GND
📟
Gripper - Robot Mechanical Arm Aluminum Metal Claws
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
Gripper - Robot Mechanical Arm Aluminum Metal Claws - Arduino Uno
Gripper - Robot Mechanical Arm Aluminum Metal Claws - Arduino Nano
Gripper - Robot Mechanical Arm Aluminum Metal Claws - Arduino Mega
Gripper - Robot Mechanical Arm Aluminum Metal Claws - ESP32
Gripper - Robot Mechanical Arm Aluminum Metal Claws - ESP8266
Gripper - Robot Mechanical Arm Aluminum Metal Claws - STM32
Gripper - Robot Mechanical Arm Aluminum Metal Claws - Raspberry Pi Pico
📄 File: gripper_-_robot_mechanical_arm_aluminum_metal_claws_-_arduino_uno.inoArduino Uno
567 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 9 on Arduino Uno. Power the servo from a separate 5V supply for anything beyond a single small SG90 - a board's own 5V pin can't supply a servo's stall current.
6#include <Servo.h>
7
8Servo myServo;
9#define SERVO_PIN 9
10
11void setup() {
12 Serial.begin(115200);
13 myServo.attach(SERVO_PIN);
14}
15
16void loop() {
17 for (int angle = 0; angle <= 180; angle += 5) {
18 myServo.write(angle);
19 delay(20);
20 }
21 for (int angle = 180; angle >= 0; angle -= 5) {
22 myServo.write(angle);
23 delay(20);
24 }
25}
📄 File: gripper_-_robot_mechanical_arm_aluminum_metal_claws_-_arduino_nano.inoArduino Nano
568 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 9 on Arduino Nano. Power the servo from a separate 5V supply for anything beyond a single small SG90 - a board's own 5V pin can't supply a servo's stall current.
6#include <Servo.h>
7
8Servo myServo;
9#define SERVO_PIN 9
10
11void setup() {
12 Serial.begin(115200);
13 myServo.attach(SERVO_PIN);
14}
15
16void loop() {
17 for (int angle = 0; angle <= 180; angle += 5) {
18 myServo.write(angle);
19 delay(20);
20 }
21 for (int angle = 180; angle >= 0; angle -= 5) {
22 myServo.write(angle);
23 delay(20);
24 }
25}
📄 File: gripper_-_robot_mechanical_arm_aluminum_metal_claws_-_arduino_mega.inoArduino Mega
568 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 9 on Arduino Mega. Power the servo from a separate 5V supply for anything beyond a single small SG90 - a board's own 5V pin can't supply a servo's stall current.
6#include <Servo.h>
7
8Servo myServo;
9#define SERVO_PIN 9
10
11void setup() {
12 Serial.begin(115200);
13 myServo.attach(SERVO_PIN);
14}
15
16void loop() {
17 for (int angle = 0; angle <= 180; angle += 5) {
18 myServo.write(angle);
19 delay(20);
20 }
21 for (int angle = 180; angle >= 0; angle -= 5) {
22 myServo.write(angle);
23 delay(20);
24 }
25}
📄 File: gripper_-_robot_mechanical_arm_aluminum_metal_claws_-_esp32.inoESP32
563 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 25 on ESP32. Power the servo from a separate 5V supply for anything beyond a single small SG90 - a board's own 5V pin can't supply a servo's stall current.
6#include <Servo.h>
7
8Servo myServo;
9#define SERVO_PIN 25
10
11void setup() {
12 Serial.begin(115200);
13 myServo.attach(SERVO_PIN);
14}
15
16void loop() {
17 for (int angle = 0; angle <= 180; angle += 5) {
18 myServo.write(angle);
19 delay(20);
20 }
21 for (int angle = 180; angle >= 0; angle -= 5) {
22 myServo.write(angle);
23 delay(20);
24 }
25}
📄 File: gripper_-_robot_mechanical_arm_aluminum_metal_claws_-_esp8266.inoESP8266
565 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin D1 on ESP8266. Power the servo from a separate 5V supply for anything beyond a single small SG90 - a board's own 5V pin can't supply a servo's stall current.
6#include <Servo.h>
7
8Servo myServo;
9#define SERVO_PIN D1
10
11void setup() {
12 Serial.begin(115200);
13 myServo.attach(SERVO_PIN);
14}
15
16void loop() {
17 for (int angle = 0; angle <= 180; angle += 5) {
18 myServo.write(angle);
19 delay(20);
20 }
21 for (int angle = 180; angle >= 0; angle -= 5) {
22 myServo.write(angle);
23 delay(20);
24 }
25}
📄 File: gripper_-_robot_mechanical_arm_aluminum_metal_claws_-_stm32.inoSTM32
565 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin PA8 on STM32. Power the servo from a separate 5V supply for anything beyond a single small SG90 - a board's own 5V pin can't supply a servo's stall current.
6#include <Servo.h>
7
8Servo myServo;
9#define SERVO_PIN PA8
10
11void setup() {
12 Serial.begin(115200);
13 myServo.attach(SERVO_PIN);
14}
15
16void loop() {
17 for (int angle = 0; angle <= 180; angle += 5) {
18 myServo.write(angle);
19 delay(20);
20 }
21 for (int angle = 180; angle >= 0; angle -= 5) {
22 myServo.write(angle);
23 delay(20);
24 }
25}
📄 File: gripper_-_robot_mechanical_arm_aluminum_metal_claws_-_raspberry_pi_pico.inoRaspberry Pi Pico
575 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Signal pin 15 on Raspberry Pi Pico. Power the servo from a separate 5V supply for anything beyond a single small SG90 - a board's own 5V pin can't supply a servo's stall current.
6#include <Servo.h>
7
8Servo myServo;
9#define SERVO_PIN 15
10
11void setup() {
12 Serial.begin(115200);
13 myServo.attach(SERVO_PIN);
14}
15
16void loop() {
17 for (int angle = 0; angle <= 180; angle += 5) {
18 myServo.write(angle);
19 delay(20);
20 }
21 for (int angle = 180; angle >= 0; angle -= 5) {
22 myServo.write(angle);
23 delay(20);
24 }
25}
Servo-actuated gripper claw (servo typically sold separately) - shown wired to one standard hobby servo.

Specification

Specification

WeightWeight68,0000 g
Dimensions4 × 3 × 3 cm
degree-of-freedomdof2
paw-materialAluminum Alloy
paw-weightabout 68gm (without motor)
claws-overall-length108mm (overall maximum length when closed paw)
claws-overall-width98mm (maximum overall width of the paw when open)
paw-maximum-opening-angle55mm

Customer Reviews