Skip to content

Commit 3cfdae7

Browse files
Project/ioan.necula (#1004)
* initial index.md version Signed-off-by: Cristian Necula <nekulachristy@gmail.com> * readjust diagram size Signed-off-by: Cristian Necula <nekulachristy@gmail.com> * Update index.md Co-authored-by: Omer Genan <81963672+genan2003@users.noreply.github.com> * fixed diagram format AGAIN Signed-off-by: Cristian Necula <nekulachristy@gmail.com> * added schematics Signed-off-by: Cristian Necula <nekulachristy@gmail.com> * changed architecture format from svg to webp Signed-off-by: Cristian Necula <nekulachristy@gmail.com> * s Signed-off-by: Cristian Necula <nekulachristy@gmail.com> * m Signed-off-by: Cristian Necula <nekulachristy@gmail.com> --------- Signed-off-by: Cristian Necula <nekulachristy@gmail.com> Co-authored-by: Omer Genan <81963672+genan2003@users.noreply.github.com>
1 parent 5359f63 commit 3cfdae7

3 files changed

Lines changed: 65 additions & 0 deletions

File tree

16.3 KB
Loading
50.3 KB
Loading
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
# Automatic A4 Drawer
2+
3+
An automated system that guides a pen along an A4 sheet of paper in order to draw any image.
4+
5+
:::info
6+
7+
Author: Necula Ioan Cristian \
8+
9+
GitHub Project Link: https://github.com/UPB-PMRust-Students/acs-project-2026-nchristiann
10+
11+
:::
12+
13+
## Description
14+
15+
The project aims to be a 2D cartesian plotter designed to reproduce images in an A4 format. The device recieves instructions in G-Code form through serial interface and transforms them into fast, precise movements using 2 stepper motors(1 for the X axis and the other for the Y axis) and a servomotor that controls the pen by lifting it up and down. The control logic is implemented in Rust.
16+
17+
## Motivation
18+
19+
I have always been passionate about art and always looked up to artists who could give their vision form. As I do not have that talent myself, this might've been the deciding factor that pushed me to choose this particular project. The other part of it was me thinking how cool it would be to reproduce literally ANY image on the internet. Also, this requires good knowledge of physics, mechanics in particular, which I found to be an interesting challenge for myself
20+
21+
## Architecture
22+
![diagram](./img/diagram.webp)
23+
24+
## Log
25+
26+
<!-- write your progress here every week -->
27+
28+
### Week 5 - 11 May
29+
Pondering.
30+
31+
### Week 12 - 18 May
32+
More pondering.
33+
34+
### Week 19 - 25 May
35+
Pondering about getting started.
36+
37+
## Hardware
38+
39+
The hardware subsystem implements a cartesian XY architecture, utilizingsteel rods and linear bearings to ensure smooth translation with low. Actuation is provided by two stepper motors , coupled with a GT2 timing belt and 20-tooth pulley transmission system. This configuration allows for high mechanical resolution, further optimized by microstepping managed via A4988 drivers. Power management is handled by a 12V DC supply, with voltage distributed to the motor power stage and simultaneously regulated through abuck converter to 5V for the STM32 microcontroller and the servo motor responsible for the Z-axis (pen-lift) action.
40+
41+
## Schematics
42+
![schematics](./img/schematics.webp)
43+
44+
## Bill of Materials
45+
46+
| Device | Usage | Price |
47+
|--------|-------|-------|
48+
| STM32 Nucleo-64| Main Controller running the Rust firmware |0 RON |
49+
| 2x Nema 17 Steppers | X and Y axis precision movement |113,98 RON |
50+
| 2x A4988 Drivers | Power interface for stepper motors | 15,98 RON|
51+
| Servo SG90 | Pen lift mechanism (Z-axis) | 13,99 RON |
52+
| LM2596 Converter | Voltage regulation (12V to 5V) | 12,99 RON |
53+
| 8mm Linear Rods | Structural guides for X and Y axes | - RON|
54+
| LM8UU Bearings | Low-friction motion on rods | 39,20 RON |
55+
| GT2 Belt & Pulleys | Motion transmission system | - RON |
56+
| 12V 5A Power Supply | Main system power source | 29,99 RON |
57+
58+
59+
## Software
60+
61+
| Library | Description | Usage |
62+
|---------|-------------|-------|
63+
| [embassy-stm32] | Async HAL for STM32 | Main framework for async task management |
64+
| [embedded-hal] | Digital I/O and PWM traits | Generic hardware abstraction |
65+
| [nom] | Parser combinators | Efficient G-code parsing |

0 commit comments

Comments
 (0)