Skip to content

Commit e8bf446

Browse files
authored
Project/eric.pascu (#1001)
* Add initial project documentation for Gimbal Stabilizer * Remove outdated diagram and replace with new architecture SVG in project 2026 * Update architecture diagram and fix image path in Eric Pascu's project documentation - Changed the image path for the architecture diagram in index.md to a relative path. - Added new SVG file for the architecture diagram in the images directory. * Fixed username issue * Add architecture diagram SVG for STM32 Nucleo project * fix: correct spelling of 'architecture' in index.md
1 parent e5eb7dd commit e8bf446

2 files changed

Lines changed: 78 additions & 0 deletions

File tree

Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
# Gimbal Stabilizer
2+
3+
A 3-axis camera stabilizer controlled by an STM32 Nucleo, with brushless motors and FOC drivers, using an MPU-6050 sensor for real-time stabilization.
4+
5+
:::info
6+
7+
**Author**: Pascu Eric \
8+
**GitHub Project Link**: https://github.com/UPB-PMRust-Students/acs-project-2026-PascuEric
9+
10+
:::
11+
12+
<!-- do not delete the \ after your name -->
13+
14+
## Description
15+
16+
The core of this project is a high-performance 3-axis stabilization system designed to turn shaky, handheld movement into cinematic, professional-grade footage. Instead of struggling with blurred or vibrating shots, a user can simply mount their camera and move freely—the gimbal handles the rest. By constantly monitoring its position in space, the device makes invisible, micro-adjustments to the Pitch, Roll, and Yaw axes. This results in a "floating" camera effect that allows creators to capture smooth walking shots, sweeping pans, and dynamic action sequences that would otherwise be impossible to record steadily by hand.
17+
18+
## Motivation
19+
20+
Gimbals have become an essential "secret weapon" in modern visual storytelling, bridging the gap between amateur clips and Hollywood-level production. Beyond just stabilizing travel vlogs for YouTubers, this technology is now a cornerstone of multiple industries: it allows drones to capture perfectly level aerial surveys, enables cinematographers to execute complex "one-take" sequences, and even assists in robotic surgery and satellite positioning.
21+
22+
As a photography and videography enthusiast, I have always been fascinated by how these devices effortlessly defy gravity. Owning a commercial gimbal inspired me to look "under the hood." I took on the challenge of building one from scratch—handling everything from 3D design to the complex math of stabilization algorithms—to truly master the physics and engineering that make modern cinematic magic possible.
23+
24+
## Architecture
25+
26+
![Diagram](./images/architecture.svg)
27+
28+
## Log
29+
30+
### Week 20 - 26 April
31+
32+
Initial upload with the description, motivation, BOM and architecture scheme.
33+
34+
## Hardware
35+
36+
The gimbal uses an STM32 Nucleo as the main microcontroller, running both the sensor fusion and PID control firmware as well as the FOC algorithms for the motors. Three brushless gimbal motors (one per axis) are driven by three individual FOC driver boards. An MPU-6050 module provides 6-DoF inertial measurements for sensor fusion. A joystick provides manual operator input for orientation control. Power is supplied by a 3S LiPo battery, with a buck converter regulating the logic-level voltages.
37+
38+
### Schematics
39+
40+
WIP
41+
42+
### Bill of Materials
43+
44+
<!-- Fill out this table with all the hardware components that you might need.
45+
46+
The format is
47+
```
48+
| [Device](link://to/device) | This is used ... | [price](link://to/store) |
49+
50+
```
51+
52+
-->
53+
54+
| Device | Usage | Price |
55+
|--------|--------|-------|
56+
| STM32 Nucleo-64 | Main microcontroller — sensor fusion, PID and FOC | [115 RON](https://ro.farnell.com/stmicroelectronics/nucleo-u545re-q/development-brd-32bit-arm-cortex/dp/4216396?CMP=e-email-sys-orderack-GLB) |
57+
| Brushless gimbal motor (x3) | One motor per axis (roll, pitch, yaw) | [3 × 50 RON](https://www.aliexpress.com/item/1005002058458786.html?spm=a2g0o.order_list.order_list_main.15.21ef1802e31OeE) |
58+
| FOC driver (x3) | Field-Oriented Control driver board, one per motor | [3 × 34 RON](https://www.aliexpress.com/item/1005007634026470.html?spm=a2g0o.order_list.order_list_main.25.21ef1802e31OeE) |
59+
| MPU-6050 | 6-DoF IMU — accelerometer + gyroscope for angle estimation | [18 RON](https://www.aliexpress.com/item/1005008796700745.html?spm=a2g0o.order_list.order_list_main.30.21ef1802e31OeE) |
60+
| Joystick module (x1) | Manual operator control of target angle | [15 RON](https://www.aliexpress.com/item/1005007846718456.html?spm=a2g0o.order_list.order_list_main.5.21ef1802e31OeE) |
61+
| 3S LiPo battery (x1) | Main power source (~11.1 V) | [90 RON](https://www.aliexpress.com/item/1005007883555706.html?spm=a2g0o.order_list.order_list_main.20.21ef1802e31OeE) |
62+
| Buck converter (x1) | Steps down battery voltage to 5 V / 3.3 V for logic | [14 RON](https://www.aliexpress.com/item/1005009823447391.html?spm=a2g0o.order_list.order_list_main.10.21ef1802e31OeE) |
63+
64+
65+
## Software
66+
67+
| Library | Description | Usage |
68+
|---------|-------------|-------|
69+
| [embassy-stm32](https://github.com/embassy-rs/embassy/tree/main/embassy-stm32) | Embassy HAL for STM32 | GPIO, I2C, ADC, PWM timers on the Nucleo |
70+
71+
## Links
72+
73+
<!-- Add a few links that inspired you and that you think you will use for your project -->
74+
75+
1. [3 Axis Mobile Gimbal](https://techarduinocode.blogspot.com/2024/04/3-axis-mobile-gimbal.html)
76+
2. [DIY Arduino Gimbal](https://howtomechatronics.com/projects/diy-arduino-gimbal-self-stabilizing-platform/)
77+
3. [Reddit Forums](https://www.reddit.com/r/ECE/comments/jj0lgg/3axis_diy_phone_gimbal_bldc_control/)

0 commit comments

Comments
 (0)