Robots: Figure 02 and Tesla Optimus Progress

ai robotics tech

Embodied AI is finally getting real. Figure’s second-generation robot and Tesla’s Optimus are making tangible progress. The era of useful humanoid robots is approaching—slowly, with caveats.

Figure 02

What It Is

Figure 02 is the second-generation humanoid from Figure AI, backed by OpenAI and NVIDIA:

SpecFigure 02
Height5’6” (167cm)
Weight130 lbs (59kg)
Degrees of freedom42
Runtime5+ hours
Payload20kg
Speed4.5 km/h

OpenAI Integration

Figure 02 uses OpenAI models for reasoning:

User: "Can you make me a coffee?"
Robot: [Processes natural language]
       [Plans task sequence]
       [Executes physically]

The integration enables:

Current Capabilities

Demonstrated tasks:

Deployment

Figure partnered with BMW for factory trials:

Tesla Optimus (Gen 2)

Specs

SpecOptimus Gen 2
Height5’8” (173cm)
Weight125 lbs (56kg)
Degrees of freedom28+
Hand actuators11 per hand
Walking speed5 km/h

Progress

Tesla’s approach differs from Figure:

Demonstrated Tasks

Factory Deployment

Already working in Tesla factories:

The Technology Stack

Sensors

┌─────────────────────────────────┐
│           Perception            │
├─────────────────────────────────┤
│ Cameras (stereo vision)         │
│ LiDAR (some models)             │
│ Force/torque sensors            │
│ IMU (balance)                   │
│ Tactile sensors (hands)         │
└─────────────────────────────────┘

Computing

┌─────────────────────────────────┐
│           On-board              │
├─────────────────────────────────┤
│ Vision processing: NVIDIA GPUs  │
│ Motion control: Real-time CPU   │
│ LLM inference: Edge chips       │
│ Cloud: Training only            │
└─────────────────────────────────┘

Training

Real robot data + Simulation + Internet data = Robot capabilities

Key insight: LLMs provide the “brain,” but motor control requires separate training on physical data.

Challenges

The Reality Gap

Simulation to reality transfer is imperfect:

Simulated task success: 95%
Real-world task success: 60-80%

Every physical detail matters: friction, compliance, object variability.

Manipulation

Human hands are incredibly sophisticated:

Human hand: 27 bones, 34 muscles, thousands of tactile sensors
Robot hand: Best cases have 20 DOF, limited sensing

Dexterous manipulation remains the hardest problem.

Cost

RobotEstimated Cost
Figure 02$50K+ (target)
Optimus$20K (Tesla’s claim)
Current industrial arms$30-100K

Volume production needed to hit targets.

Safety

Robots strong enough to be useful are dangerous:

# Oversimplified safety logic
if contact_force > safe_threshold:
    stop_immediately()
    back_away()

Real safety is much more complex—especially around humans.

Use Cases (Realistic, 2025)

Factory Work

Logistics

Healthcare (Longer Term)

Home (Even Longer Term)

What This Means for Developers

New Platforms Emerging

# Robot Operating System (ROS) 2
import rclpy
from geometry_msgs.msg import Twist

def move_robot():
    node = rclpy.create_node('robot_mover')
    publisher = node.create_publisher(Twist, '/cmd_vel', 10)
    
    msg = Twist()
    msg.linear.x = 0.5
    publisher.publish(msg)

LLM + Robotics APIs

# Conceptual high-level control
async def make_coffee(robot, llm):
    plan = await llm.generate(
        "Describe steps to make coffee in this kitchen",
        context=robot.scene_understanding()
    )
    
    for step in plan.steps:
        primitive = await llm.translate_to_robot_action(step)
        await robot.execute(primitive)

Skills to Learn

Timeline Expectations

TimeframeExpectation
2025Factory pilots
2026-2027Expanded factory use
2028-2030Commercial logistics
2030+Consumer applications

Take Tesla’s timelines and double them. Always.

Final Thoughts

Humanoid robots are real and improving. But we’re in the “early internet” phase—impressive demos, limited utility.

Watch Figure and Tesla. Learn robotics fundamentals. The field is accelerating.

The robots are coming. They’re just late and clumsy—for now.


The future walks on two legs. Slowly. And sometimes falls.

All posts