A 17-section interactive reference guide covering the full mechatronics stack: actuator types and selection (electric, pneumatic, hydraulic), DC/stepper/servo motors and encoder feedback, gear trains and mechanical power transmission, belt and chain drives, motor drivers and H-bridge circuits, PWM speed control, variable frequency drives, PID feedback control and tuning, sensor fusion (complementary and Kalman filtering), automation sensors, signal conditioning and ADC interfacing, embedded firmware architecture, prototyping platforms, and the multidisciplinary mechatronic system design process.
The full mechatronic design stack is covered end to end: the mechanical/electrical power path (actuator selection and sizing, gear trains and compound transmissions, motor drivers, H-bridges, PWM, and variable frequency drives for AC induction motors), the control and sensing layer (PID theory and Ziegler-Nichols tuning, complementary filters, Kalman filter mathematics for state estimation, and automation sensors — proximity, photoelectric, and force/torque), and the embedded software layer (signal conditioning and ADC interfacing, bare-metal vs. RTOS firmware architecture, and Arduino/ESP32/Raspberry Pi prototyping platforms) — closing with the V-model multidisciplinary design process that ties all three domains together.
Use the Prev / Next buttons at the bottom, or press the arrow keys on your keyboard. Click the ☰ menu button in the top-right corner to open the table of contents and jump directly to any of the 17 sections. The amber progress bar at the top tracks your position through the guide. Scroll the mouse wheel to advance or go back.
This handbook is a companion reference to the studio's Knowledge Articles, Tools, and Web Apps. It draws directly on the studio's published articles on actuator selection, gear trains, microcontroller-to-actuator interfacing, PID control theory, Kalman filtering, and embedded firmware architecture, condensing them into one navigable, quick-reference format alongside the studio's Gear Ratio & Torque Calculator, Actuator Sizing Calculator, PWM/H-Bridge Selector, and PID Control Loop Tuning Simulator.
Every formula in this guide is presented with the variable definitions needed to apply it directly — gear ratio and compound train relationships, PID output and Ziegler-Nichols tuning formulas, the complementary filter blend equation, Kalman gain, VFD affinity laws, and ADC resolution. Section 17 collects every key formula and typical value into a single quick-reference page for fast lookup once you already understand the underlying concept from its full section.
Electric actuators (DC, stepper, servo) are the default choice for precise position or speed control and clean digital integration. Pneumatic actuators suit fast, simple two-position motion and are inherently compliant on contact since air is compressible. Hydraulic actuators deliver far more force per unit of actuator size than electric or pneumatic actuation, making them the right choice wherever very high force or torque is needed in a compact package, at the cost of needing a full hydraulic power unit.
This follows directly from conservation of energy: mechanical power is the product of torque and angular speed (P = T × ω), and an ideal gear train conserves power across the mesh. If a gear train reduces speed by a factor of N, torque must increase by that same factor to keep the power product constant — the same mechanical-advantage principle behind a lever trading force for distance.
An H-bridge is four switches arranged around a motor so the circuit resembles the letter H; closing diagonally opposite switch pairs reverses current direction, giving bidirectional motor control from one supply polarity. An H-bridge alone only gives on/off/reverse control — PWM adds speed control by rapidly switching the drive signal at a fixed frequency and varying the duty cycle, which the motor's own inductance and inertia smooth into an effectively continuous average power.
A complementary filter applies a fixed-weight blend — a high-pass filter on a fast-but-drifting sensor (like an integrated gyroscope angle) and a low-pass filter on a slow-but-drift-free sensor (like accelerometer tilt) — and is simple enough to run on the smallest microcontroller. A Kalman filter computes a mathematically optimal, continuously adaptive blend weight (the Kalman gain) based on the current uncertainty of the model prediction versus the measurement, generally outperforming a complementary filter at higher implementation and computational cost.
Bare-metal firmware (a main loop plus interrupt service routines, no operating system) is the right choice for a device with one dominant timing requirement, since it gives the most direct and predictable control at the lowest overhead. An RTOS earns its added complexity once a device needs to reliably juggle several independent, differently-timed responsibilities at once — for example a fast inner motor control loop alongside a slower communications stack and a user interface — because its preemptive task scheduler handles that interleaving reliably in a way that is easy to get wrong by hand.
Disclaimer: This reference guide summarizes general mechatronics engineering principles and practices for educational purposes only. Always consult manufacturer datasheets, applicable design standards, and a qualified engineer for actual design, sizing, and safety-critical decisions.