Next Article in Journal
Helicopter Rotor Aerodynamic Characteristics in Ground Effect: Numerical Study
Previous Article in Journal
Numerical Modeling of Post-Tensioned Concrete Flat Slabs with Unbonded Tendons in Fire
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Proceeding Paper

Development of an Educational Omnidirectional Mobile Manipulator with Mecanum Wheels †

Institute of Information and Communication Technology, Bulgarian Academy of Sciences, 1000 Sofia, Bulgaria
*
Author to whom correspondence should be addressed.
Presented at the 14th International Scientific Conference TechSys 2025—Engineering, Technology and Systems, Plovdiv, Bulgaria, 15–17 May 2025.
Eng. Proc. 2025, 100(1), 16; https://doi.org/10.3390/engproc2025100016
Published: 4 July 2025

Abstract

The developed omnidirectional mobile manipulator is an educational omnidirectional mobile manipulator that utilizes the Raspberry Pi Pico W and is programmed in Python. It is designed to enhance STEM education by providing an interactive environment for studying robotics, sensor integration, and programming techniques. The robot is built on an off-the-shelf chassis equipped with Mecanum wheels and a robotic arm actuated by servo motors. As part of this project, the control electronics were designed and implemented to enable seamless operation. While the platform allows students to program the robot as part of the STEM curriculum, our base software solution, developed in Python, provides control of both the mobile base and the robotic arm via a web interface accessible through the robot’s Wi-Fi hotspot.

1. Introduction

The educational omnidirectional mobile manipulator (Figure 1) functions as a mobile robotic platform designed for educational applications in science, technology, engineering, and mathematics (STEM). This study presents a complete redesign of the robotic system’s electronics coupled with new, enhanced software solutions tailored for a designated programming platform [1]. The proposed alterations facilitate a diverse array of instructional methodologies targeting electronics, programming, and broader STEM concepts [2,3,4].
A fundamental aspect of STEM education is the practical demonstration of hardware integration, particularly through the use of educational mobile robotics and the associated robot control software [5]. This article examines the kinematic capabilities of the educational mobile manipulator, including robotic locomotion, arm articulation, object manipulation (gripping), transportation, and precise object placement within designated target areas. Furthermore, it details the software interfaces that manage the execution of the robot’s operational commands, along with the programmed sequences that synchronize the movements of the mobile unit and the functionality of the robotic arm.

2. Hardware

The robotic system, referred to as the educational omnidirectional mobile manipulator (Figure 2), employs the Raspberry Pi Pico W (Pololu Robotics and Electronics, Vegas, NV, USA) as its central processing unit [6,7]. This microcontroller facilitates communication with various peripheral components, thereby orchestrating the control of motors and sensors within the system. The architecture comprises several integral components, elaborated upon below:
  • Raspberry Pi Pico W: The core microcontroller responsible for executing the control algorithms and managing data flow between the system components. It incorporates wireless networking capabilities, enabling remote control and monitoring.
  • Motor Drivers: These components interface between the microcontroller and the motors, allowing the Raspberry Pi Pico W to control motor speed and direction via pulse width modulation (PWM) signals.
  • DC/Servo Motors: Actuators that provide locomotion to the omnidirectional mobile manipulator. The specific type of motors employed is contingent on the required operational functions, such as movement and steering.
  • Sensors: Various sensors are integrated into the robot to enhance its environmental awareness and capability. These may include the following:
    Ultrasonic Sensors: Utilized for distance measurement and obstacle avoidance.
    Infrared Sensors: Employed for line following or proximity detection.
    Camera Module (if applicable): Provides visual input for advanced capabilities such as image processing or object recognition.
  • Power Supply: A dedicated power source that delivers the necessary voltage and current to the Raspberry Pi Pico W and the motor drivers, ensuring consistent operation throughout the system’s runtime.
  • Communication Interfaces: These may include I2C, SPI, or UART communication protocols that facilitate data exchange between the Pico W and peripheral components, ensuring seamless coordination of the system’s functions.
In summary, the robot is a modular and versatile robotic platform that integrates various electronic components, allowing for diverse applications in robotics, automation, and educational environments.
Educational manipulator hardware architecture combines energy-efficient and functional modules that enable high maneuverability, autonomy, and interactivity [8,9,10]. The integration of Raspberry Pi Pico W, PCA9685, and Pico-Motor-Driver provide flexible control, and the ultrasonic sensor makes the robot more intelligent and adaptable in different environments. To provide stable and continuous power sRaspberry Pi Pico W, PCA9685upply, the mobile manipulator uses two Li-ion batteries (2600 mAh) to ensure autonomous operation. A DC-DC converter provides stable power supplied to some of the modules. Table 1 shows the hardware components used on the educational omnidirectional mobile manipulator.
The I2C bus configurations of the Pico W is shown in Table 2.
Role of Pins in Communication and Power Supply:
  • SDA (Serial Data Line—GPIO 20 pin) and SCL (Serial Clock Line—GPIO 21 pin):
The SDA and SCL pins facilitate I2C (inter-integrated circuit) communication between the Raspberry Pi Pico W and the motor driver. The SDA line is responsible for transmitting data, while the SCL line provides the necessary timing for synchronizing data transfers. This synchronous communication protocol allows for efficient data exchange and control of the motor functions. Proper connectivity of the SDA and SCL lines is critical; misconfiguration will inhibit effective communication, resulting in the motor driver failing to respond to commands issued by the Raspberry Pi Pico W, thereby impairing system functionality.
  • GND (Ground) and VCC (Voltage Common Collector):
The GND and VCC pins establish the required electrical connection between the Raspberry Pi Pico W and the motor driver. The GND pin serves as the reference point for the voltage levels within the system, ensuring a common ground for accurate signal transmission. The VCC pin provides the necessary voltage supply to the motor driver, enabling its operation. These connections are crucial for ensuring that both devices operate within their specified voltage ranges and that the signals are interpreted correctly. Inadequate or improper connections may lead to insufficient power supply or ground reference issues, potentially resulting in system malfunction or device damage.

3. Software Architecture of Educational Omnidirectional Mobile Manipulator

The educational omnidirectional mobile manipulator software architecture consists of several integral modules, all implemented in Python 3, which facilitate essential functionalities including inter-module communication, motor control, robotic arm manipulation, and user interaction through a web interface [8,9,11]. Each of these modules interacts cohesively to enable the seamless operation of the robotic system. The communication module ensures efficient data exchange between components, while the motor control module orchestrates the precise movements of the robotic platform. The robotic arm control module is responsible for the manipulation and positioning tasks, and the web interface serves as an accessible platform for user engagement and system monitoring. Together, these modules form a robust framework for the deployment and operation of the educational mobile manipulator platform. The main software modules developed for the educational manipulator are shown in Table 3.
Module Structure and Communication Overview:
  • Motor Control:
    The robot_motors.py file utilizes the PCA9685 to manage four DC motors.
    The motors are controlled via the I2C interface, specifically using GPIO20 (SDA) and GPIO21 (SCL).
    This module includes a motor driver class featuring methods to start, stop, and adjust the speed of the motors.
  • Robotic Arm Control:
    The robot_arm.py file is responsible for controlling three MG90S servomotors through the PCA9685.
    Control is executed via I2C communication.
    The module supports smooth movement of the servomotors through the smooth_move_servo() method.
    It also includes a function to reset the arm (reset_servos()).
  • Wi-Fi Communication and Web Interface:
    The robot_main.py file creates a Wi-Fi access point and manages requests from index.html.
    Upon startup, the mobile manipulator creates an SSID, i.e., “robot”, allowing users to connect.
    When users interact with the web interface by pressing a button, an HTTP request is sent to the robot.
    Movement and robotic arm control can be performed through sliders and buttons in the web interface.
The software workflow consists of the following stages:
  • Power On and Initialization: The main.py script initializes robot.
  • Wi-Fi Network Setup: The robot_main.py script creates the Wi-Fi access point (SSID: “robot”).
  • Web Control Interface: The index.html file provides a graphical control panel for user interaction.
  • Command Processing: The educational omnidirectional mobile manipulator processes requests from the web interface through robot_main.py.
  • Motion and Manipulation: The robot.py script invokes the motion and control methods for the robotic arm.
  • Connection Termination: The Wi-Fi connection can be terminated when the user logs off.
The Python modules (files) associated with the omnidirectional mobile manipulator workflow are shown in Table 4.
The presented architecture facilitates a dynamic and efficient management framework for the educational omnidirectional mobile manipulator, enabling the augmentation of its functionality through the integration of novel modules and enhancements.
Figure 3 illustrates a block diagram representing the primary components of the program. The educational manipulator management program operates on a fundamental iterative loop, which methodically processes incoming requests from clients interfacing through the robot’s Wi-Fi access point. Each request may encapsulate instructions for platform control, motor operation, or manipulation of the robotic arm, thereby enabling versatile interaction with the robotic system. This design paradigm ensures the seamless execution of commands and adaptive response to user inputs, thereby enhancing the overall operational efficacy of the educational manipulator.
The primary software snippets illustrating the educational omnidirectional mobile manipulator workflow are as follows:
Power-Up and Initialization.
File: main.py.
Upon startup, the robot loads the essential modules and initializes its control systems.
import sys.
sys.path.append(‘/Robot’).
from robot_main import * #—the main control module.
We create a Wi-Fi network. File: robot_main.py. Upon startup, the omnidirectional mobile manipulator creates a Wi-Fi access point with the SSID “robot”, allowing users to connect seamlessly (Figure 4). Robot control—web interface. File: index.html. HTML interface with motion buttons (Figure 5). HTTP request processing and command execution. File: robot_main.py. When a button is pressed, the robot receives an HTTP request and executes the corresponding movement (Figure 6).
Motion Control. File: robot.py. Motion functions by controlling the four DC motors (Figure 7). Control of the robotic arm. File: robot_arm.py. Control of the three servomotors via PCA9685. (Figure 8) Handling hand control requests from the web interface. File: robot_main.py. When the values of the web interface sliders are changed, a request is sent to the robot (Figure 9).
Session completion and shutdown.
File: robot.py.
A method to shut down all engines when a job is completed.
def stop_all_motors(self):
self.m.StopAllMotors().

4. Experimental Studies

To assess the functionality of the robot (see Figure 1), a series of experiments were conducted to evaluate its control precision, movement capabilities, and object manipulation proficiency. The robot was connected via the Wi-Fi access point (AP) provided by software running on the Raspberry Pi Pico W.
The robot’s configuration for these experiments includes the following:
  • A chassis equipped with four Mecanum wheels for enhanced multi-directional mobility.
  • A manipulator featuring three axes of motion and a gripper.
  • A Raspberry Pi Pico W serving as the central controller.
  • A battery power supply alongside drivers for DC and servo motors.
  • A web interface for controlling the robot (illustrated in Figure 2).
The experimental setup involved a smooth, flat, and rigid surface that provided stability for the robot’s movements. This environment included a platform for placing the objects the robot was to grasp, as well as a marked circle indicating the designated target location for placement.
Two experiments were conducted in this study:
  • The first experiment assessed the robot’s motion control to verify the system’s operational accuracy.
  • The second experiment focused on the robot’s capacity to grasp, transport, and accurately place objects within the designated target area.
Experiment 1.
Control and Movement of the Robot.
Figure 10 illustrates the various movements of the manipulator, which can be managed through the robot’s web interface. This interface features sliders dedicated to controlling the three primary axes of the manipulator:
  • Base: Rotates the manipulator’s base to the left or right.
  • Arm: Adjusts the arm’s position vertically, allowing for upward or downward movement.
  • Gripper: Regulates the opening and closing mechanism of the gripper.
Upon initialization, the default position for all three axes is set to 90 degrees. Table 5 outlines the sequence of experiments conducted to control the gripper, while Figure 11 displays the corresponding positions of the gripper throughout these experiments.
To manage the platform’s movements, the experiment utilized a system of random button selection. Examples of these commands, accompanied by actual button images, can be seen in Figure 11.
After each movement, the robot can be redirected without the need to press the “STOP” button.
Experiment 2.
Capture, transport, and placement of an object at a target location.
This experiment is designed to assess the mobile robot’s capability to grasp, transport, and accurately place small objects at designated target locations. Figure 12 provides visual documentation of the experiment. The robot is controlled via a web interface, allowing for remote operation of both its movement and the manipulator.
Table 6 shows the experimental stages.

5. Conclusions

The experiments conducted validated the core functionality of the robot and its proficiency in executing the designated tasks. Testing revealed several key advantages, as well as some limitations that could be addressed in future iterations. Table 7 and Table 8 provide a summary of the positive outcomes and identified shortcomings of the robot.

Author Contributions

N.C. and S.C. developed the hardware of the educational mobile robot, including the casting of hardware elements; S.C. was responsible for developing the interface; R.V. designed the interface and conducted related experiments; R.V. and M.S. drafted the manuscript; M.S. performed resentencing and editing. All authors have read and agreed to the published version of the manuscript.

Funding

This work was supported and funded by Erazmus+ Program, Project: “Robo STEAM Academy” (2024-1-BGO I-KA220-VET-000256580).

Institutional Review Board Statement

Not applicable.

Informed Consent Statement

Not applicable.

Data Availability Statement

The data presented in this study are available upon request from the corresponding author.

Conflicts of Interest

The authors declare no conflict of interest.

Abbreviations

The following abbreviations are used in this manuscript:
STEMScience, technology, engineering, and mathematics
PWMPulse width modulation
SDASerial data line
SCLSerial clock line
GNDGround
VCCVoltage common collector
I2CTwo-wire serial communication protocol using a SDA and a SCL
SPISerial peripheral interface
UARTUniversal asynchronous receiver–transmitter
HTMLHypertext markup language
HTTPHypertext transfer protocol
APAccess point
DCDirect current
Wi-FiWireless fidelity

References

  1. Siciliano, B.; Khatib, O. Handbook of Robotics; Springer: Berlin/Heidelberg, Germany, 2008; Available online: https://link.springer.com/book/10.1007/978-3-540-30301-5 (accessed on 5 February 2023).
  2. Mason, M.T.; Pai, D.K.; Rus, D.; Taylor, L.R.; Erdmann, M.A. A Mobile Manipulator. In Proceedings of the 1999 IEEE International Conference on Robotics and Automation, Detroit, MI, USA, 10–15 May 1999. [Google Scholar]
  3. Islamgozhayev, T.U.; Mazhitov, S.S.; Zholmyrzayev, A.K.; Toishybek, E.T. IICT-bot: Educational robotic platform using omni-directional wheels with open source code and architecture. In Proceedings of the 2015 International Siberian Conference on Control and Communications (SIBCON), Omsk, Russia, 21–23 May 2015; pp. 1–3. [Google Scholar]
  4. Mamani, N.M.; García-Peñalvo, F.J.; Conde, M.Á.; Gonçalves, J. A systematic mapping about simulators and remote laboratories using hardware in the loop and robotic: Developing STEM/STEAM skills in pre-university education. In Proceedings of the 2021 International Symposium on Computers in Education (SIIE), Malaga, Spain, 23–24 September 2021; pp. 1–6. [Google Scholar]
  5. Mita, Y.; Kawahara, Y. 15-year educational experience on autonomous electronic information devices by flipped classroom and try-by-yourself methods. IET Circuits Devices Syst. 2017, 11, 321–329. [Google Scholar] [CrossRef]
  6. Loker, D. Embedded Systems using the Raspberry Pi Pico. In Proceedings of the 2022 ASEE Annual Conference & Exposition, Minneapolis, MN, USA, 26–29 June 2022. [Google Scholar]
  7. Loker, D.R. Raspberry Pi Pico as an IoT Device. In Proceedings of the 2023 ASEE Annual Conference & Exposition, Baltimore, MD, USA, 25–28 June 2023. [Google Scholar]
  8. Gfrerrer, A. Geometry and Kinematics of the Mecanum Wheel. Comput. Aided Geom. Des. 2008, 25, 784–791. [Google Scholar] [CrossRef]
  9. Wikipedia Contributors. (n.d.). Differential Wheeled Robot. Wikipedia, The Free Encyclopedia. Available online: https://en.wikipedia.org/wiki/Differential_wheeled_robot (accessed on 26 February 2025).
  10. Yovkov, S.; Chivarov, N.; Chivarov, S.; Staikova, M. Educational Mobile Robot Equipped with Intelligent Camera Huskylens. In Proceedings of the 9th International Conference on Control, Decision and Information Technologies (CoDIT), Rome, Italy, 3–6 July 2023. [Google Scholar] [CrossRef]
  11. Zhang, Y.; Ge, S. Analysis of the motion characteristics of Marine Mecanum transport platform. MATEC Web Conf. 2018, 232, 04006. [Google Scholar] [CrossRef]
Figure 1. Educational omnidirectional manipulator.
Figure 1. Educational omnidirectional manipulator.
Engproc 100 00016 g001
Figure 2. Hardware architecture.
Figure 2. Hardware architecture.
Engproc 100 00016 g002
Figure 3. Block diagram of the program.
Figure 3. Block diagram of the program.
Engproc 100 00016 g003
Figure 4. Wi-Fi.
Figure 4. Wi-Fi.
Engproc 100 00016 g004
Figure 5. Web interface.
Figure 5. Web interface.
Engproc 100 00016 g005
Figure 6. HTTP request processing.
Figure 6. HTTP request processing.
Engproc 100 00016 g006
Figure 7. Motion control.
Figure 7. Motion control.
Engproc 100 00016 g007
Figure 8. Control of the robotic arm.
Figure 8. Control of the robotic arm.
Engproc 100 00016 g008
Figure 9. Handling hand control.
Figure 9. Handling hand control.
Engproc 100 00016 g009
Figure 10. Control of gripper positions.
Figure 10. Control of gripper positions.
Engproc 100 00016 g010
Figure 11. Pinch position con.
Figure 11. Pinch position con.
Engproc 100 00016 g011
Figure 12. Capture, transport, and placement of an object at a target location.
Figure 12. Capture, transport, and placement of an object at a target location.
Engproc 100 00016 g012
Table 1. Educational omnidirectional mobile manipulator hardware components.
Table 1. Educational omnidirectional mobile manipulator hardware components.
ComponentPictureFeaturesMain Features
1Raspberry Pi Pico WEngproc 100 00016 i001Main microcontroller, which controls all peripherals and communicationARM Cortex-M0+; 133 MHz; Wi-Fi module I2C; SPI and PWM interfaces; low power consumption
2Pololu 5 V, 2.5 A
Step-Down Regulator (D24V25F5)
Engproc 100 00016 i002A step-down regulator provides a stable 5 V supply for the componentsInput voltage: 6–38 V; output voltage: 5 V; maximum current: 2.5 A; up to 90% efficiency
3Pico-Motor-Driver (Waveshare)Engproc 100 00016 i003Driver for 4 DC motors, used for drive controlOperating voltage: 6–12 V; 12-bit PWM control; H-bridge drivers TB6612FNG; I2C communication
4PCA9685 (16-channel PWM controller)Engproc 100 00016 i004Controls the servomotors of the manipulator via hardware PWM controlUp to 16 PWM channels; I2C interface; 12-bit precision; 5 V power supply
5MG90S servomotors
(3 pieces)
Engproc 100 00016 i005Control of the robotic arm—rotation, lifting, and grippingOperating voltage: 4.8–6 V; torque: 2.2 kg/cm; metal gears
6Ultrasonic CS100AEngproc 100 00016 i006Distance measurement and obstacle detectionRange: 2–500 cm; power supply: 3.3–5 V; TRIG/ECHO interface
7Li-Ion batteries
(2 × 2600 mAh)
Engproc 100 00016 i007Provide autonomous power to the robotTotal capacity: 5200 mAh; high energy density; rechargeable
Table 2. The Pico W I2C bus configurations.
Table 2. The Pico W I2C bus configurations.
SourcePico W (GPIO pin)Pico-Motor-Driver (pin)
SDA (serial data)GP20SDA
SCL (serial clock)GP21SCL
VCC (power supply)5 VVCC (pin 39)
GND (mass)GNDGND (pin 38)
Table 3. Basic Python programming modules.
Table 3. Basic Python programming modules.
Module (File)Feature
main.pyThe startup script that initializes the robot and manages Wi-Fi
robot_main.pyResponsible for creating the Wi-Fi access point and handling HTTP requests
index.htmlWeb interface to control the movement of the robot base and robotic arm via browser
robot.pyMaster class for robot control including motion methods
robot_motors.pyClass for controlling wheel motors via PCA9685 and H-bridge driver
robot_arm.pyRobotic arm control class using PCA9685 to control the servo motors
pca9685.pyDriver for PCA9685 to generate PWM signals for motors and servomotors
Table 4. Python modules related to the workflow.
Table 4. Python modules related to the workflow.
ActionFile
1.Initialization of the systemmain.py
2.Setting up a Wi-Fi access pointrobot_main.py
3.Interactive web page interfaceindex.html
4.Accept and process commandsrobot_main.py
5.DC motor controlrobot.py
6.Arm controlrobot_arm.py
7.Execute commands from the web interfacerobot_main.py
8.Execute commands from the web interfacerobot.py
Table 5. Control of gripper positions.
Table 5. Control of gripper positions.
ImageHandler MovementControl Used (Slider)Control Direction
1Row 1, LeftStart position of the gripper-Set to center
2Row 1, MiddleRotate to the right and slightly lowerBase, ArmSlid right, slid left
3Row 1, RightTurn left and lift slightlyBase, ArmSlid left, slid right
4Row 2, LeftClosing the gripperGripperSlid right
5Row 2, MiddleOpening the gripperGripperSlid left
6Row 2, RightRotation towards centerBaseSlid to center
Table 6. The experimental stages for object manipulation.
Table 6. The experimental stages for object manipulation.
StageAction of the RobotComment
1Approach to the siteThe robot approaches the platform where the yellow 3D-printed object is locatedControl is undertaken manually via the web interface
2Site captureThe manipulator positions itself above the object and grips the 3D-printed elementThe servo mechanism gently closes the grip so as not to damage the
object
3Transport of the objectThe robot moves towards the target area marked with a black circleMovement is performed using Mecanum wheels for flexible
maneuvering
4Placement of the objectThe manipulator positions the object over the target marker (black circle) and releases itThe positioning accuracy is
controlled to be placed correctly
5Completion of the experimentThe robot stops after releasing the objectThe user visually confirms
successful execution
Table 7. Positive results of the experiments.
Table 7. Positive results of the experiments.
AdvantageDescriptionBenefit
1Successfully implemented hardware and softwareThe robot is fully functional and works as expectedSuitable for testing, training, and further development
2Connecting to the robotThe robot software creates a Wi-Fi access point, allowing for easy connection from a computer or mobile deviceQuick and convenient robot startup
without additional infrastructure
3ControlControl is accessible via a web interface, with no complicated configurationEasy to use even by novice users
4Control flexibilityThe robot can be controlled remotely via a PC without the need for additional controllersFacilitates experimentation and learning by allowing quick changes in movements
5Suitable for teaching studentsFree source code and documentation make it easy to adapt the project for educational purposesSuitable for STEM learning and
developing algorithmic thinking
6Functionality as expectedBasic object movement and manipulation work robustlyThe reliability of the mechanics and
software has been confirmed
7Good maneuverabilityMecanum wheels provide freedom of movement in all directionsSuitable for complex manipulation tasks and navigation in confined spaces
Table 8. Identified deficiencies from the experiments.
Table 8. Identified deficiencies from the experiments.
DisadvantageDescriptionPotential Risk
1Lack of real-time managementCommands are not executed instantaneously due to communication delaysIncorrect or delayed robot responses
2Risk of communication breakdownControl relies on Wi-Fi, which can be affected by interferenceThe robot may remain in the last
submitted state without control
3Delays in user responsesControl via sliders and buttons requires manual actions by the operatorReduced speed in emergency situations or fine tuning
4Limitations of gripper mechanicsExcessive tightening can cause servomotor failureLack of overstretch protection, possible blockage
5Lack of autonomous adjustments on the flyThe robot does not self-correct position errorsLower accuracy when grasping and
placing objects
6Risk of hardware wearLack of smooth transitions in motor controlFaster mechanical wear and damage in the long term
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.

Share and Cite

MDPI and ACS Style

Chivarov, N.; Vasilev, R.; Staikova, M.; Chivarov, S. Development of an Educational Omnidirectional Mobile Manipulator with Mecanum Wheels. Eng. Proc. 2025, 100, 16. https://doi.org/10.3390/engproc2025100016

AMA Style

Chivarov N, Vasilev R, Staikova M, Chivarov S. Development of an Educational Omnidirectional Mobile Manipulator with Mecanum Wheels. Engineering Proceedings. 2025; 100(1):16. https://doi.org/10.3390/engproc2025100016

Chicago/Turabian Style

Chivarov, Nayden, Radoslav Vasilev, Maya Staikova, and Stefan Chivarov. 2025. "Development of an Educational Omnidirectional Mobile Manipulator with Mecanum Wheels" Engineering Proceedings 100, no. 1: 16. https://doi.org/10.3390/engproc2025100016

APA Style

Chivarov, N., Vasilev, R., Staikova, M., & Chivarov, S. (2025). Development of an Educational Omnidirectional Mobile Manipulator with Mecanum Wheels. Engineering Proceedings, 100(1), 16. https://doi.org/10.3390/engproc2025100016

Article Metrics

Back to TopTop