Skip to product information
Robotic Arm Kit 4.0 - Fabri Creator
1/2

Robotic Arm Kit 4.0 - Fabri Creator

9 reviews

Sale price  $69.00 Regular price  $80.00
6 Servomotors included
3× MG995 · 3× SG90S · All with metal gears
Easy to assemble
Simple soldering · Wiring diagram included
Free worldwide shipping
To any country, no extra cost
Everything included
Components · STLs · Code · App
Warranty included
Manufacturer + Creator Store
Electrical components
5 items
3 × Servo MG995 180° metal gears
3 × Servo SG90S 180° metal gears
1 × Arduino UNO
1 × HC-06 — Bluetooth module
1 × 5V 5A power adapter
Accessories & connectors
5 items
1 × DC Jack port threaded
1 × Power cable (100 cm)
1 × Servo extension 10 cm
2 × Servo extension 30 cm
1 × Servo extension 50 cm
Included tools
2 items
1 × M2 Allen key
1 × M3 Allen key
Hardware & fasteners
4 items
15 × M4×12 mm screw
8 × Screw 7379-4-M3-6
5 × M3 3mm screw
5 × M3 6mm screw
Included digital files
3 items

Complete library of STL files to 3D print all parts, Arduino code ready to upload, and the ROBOTIC ARM CONTROL FABRI Creator app compatible with Windows and Linux.

STL Files
Arm, forearm, gripper, rotating base, and auxiliary parts
Arduino Code
BrazoRobotico4.0.ino — ready to upload with Arduino IDE
Control App
Windows · Linux
Ideal for
Makers and robotics enthusiasts with a 3D printer
Engineering, electronics, and STEM students
Schools, academies, and maker labs
Anyone who wants all components ready without sourcing them separately
Arduino code preview
Arduino C++
#include <Servo.h>

Servo servo_0;
Servo servo_1;
Servo servo_2;
Servo servo_3;
Servo servo_4;
Servo servo_5;

void setup() {
  Serial.begin(9600);
  servo_0.attach(2);
  servo_1.attach(3);
  servo_2.attach(4);
  servo_3.attach(5);
  servo_4.attach(6);
  servo_5.attach(7);
}

void loop() {
  if (Serial.available() > 0) {
    String input = Serial.readStringUntil('\n');
    int servoIndex = input.substring(0, 1).toInt();
    int servoValue = input.substring(2).toInt();
    switch (servoIndex) {
      case 1: servo_0.write(servoValue); break;
      case 2: servo_1.write(servoValue); break;
      case 3: servo_2.write(servoValue); break;
      case 4: servo_3.write(servoValue); break;
      case 5: servo_4.write(servoValue); break;
      case 6: servo_5.write(servoValue); break;
      default: break;
    }
  }
}
Included extra
Bluetooth
Control it from your phone via Bluetooth
The kit includes the HC-06 module, which lets you control the arm wirelessly from your phone. If you want to use it, you can follow this tutorial as a guide to set up the connection and the control app.
Watch Bluetooth tutorial →

FREQUENTLY ASKED QUESTIONS

See moreSee less
Do I need a 3D printer?
Yes. All our kits include the 3D models (STL) so you can print the parts at home with any FDM printer. The kit includes everything else: electronic components, screws and tools.
Where do I get the digital files after purchase?
As soon as your payment is confirmed you get an email with the download link (with Binance Pay it unlocks ~2 minutes after paying). They also stay available in your store account.
Are digital files refundable?
They are non-refundable. But if you picked the wrong version or file, message us on WhatsApp and we'll help you sort it out.
How long does shipping take?
Free tracked shipping worldwide on orders over $30. Real door-to-door times (business days): US and Canada 10-21 · Europe 10-20 · Mexico 13-20 · South and Central America 15-30 · rest of the world 12-25. Final delivery is made by your national postal service (USPS, Correos, La Poste…). Depending on your country, customs may charge import taxes on delivery (to the US they are covered) and they can sometimes be reduced: message us on WhatsApp or check our Shipping policy.
Is it good for university or educational projects?
Yes. Many customers use our arms in university projects on forward/inverse kinematics and thesis work.
Which kit is best to start with?
The Robotic Arm Kit 4.1: the best balance for your first robotic arm.

You may also like