Hardware Atlas

Hardware Atlas · Special

Component-to-Intelligence Map

Every hardware component plays a specific role in the AI pipeline. This map shows how electronics map to the perception–processing–action loop that every embodied AI system must implement.

Sense

Sensors

Process

MCU / Edge

Act

Actuators

Communicate

Wi-Fi / Serial

Power

Battery / PSU

Processing

Policy computation and state estimation

Microcontrollers run the control policy — translating sensor observations into actuator commands. The more capable the MCU, the more sophisticated the policy it can execute locally.

Communication

Data collection, remote control, multi-agent coordination

Communication components connect the embedded system to the broader AI pipeline — streaming data for learning, receiving policy updates, and coordinating multi-robot systems.

Full System Example — 2-DOF Robotic Arm

Sensors

  • MPU-6050 IMU (wrist)
  • 2× Rotary encoders (joints)

MCU

  • Arduino Uno R3
  • Runs PID at 50 Hz

Actuators

  • 2× SG90 servo motors
  • 1× DC gripper motor

Driver

  • L298N for gripper DC motor
  • Servo library for joints

Comms

  • USB Serial to Python
  • Streams joint states at 20 Hz