nfrax logonfrax

Infrastructure that just works. Ship products, not boilerplate.

Frameworks

  • svc-infra
  • ai-infra
  • fin-infra
  • robo-infra

Resources

  • Getting Started
  • What's New
  • Contributing

Community

  • GitHub

© 2026 nfrax. All rights reserved.

nfrax logonfrax
Start HereWhat's New
GitHub
robo-infra

Any robot, one SDK

Universal robotics infrastructure. Works with any hardware, simulates by default, AI-native.

Any hardwareSim-firstAI-native
v...
Get StartedAPI Reference
$pip install robo-infra
Robot Arm Demo
Live
8ms92%
AI Mode
ABCpos: (70, 30)
Command Log
○System ready
Powered by robo-infra

Control anything

From simple servos to AI-powered robots

Servo Control

python
from robo_infra.actuators import Servo
from robo_infra.core.types import Limits

# Create a servo (simulation by default)
servo = Servo(
    name="gripper",
    channel=0,
    limits=Limits(min_value=0, max_value=180),
)

# Move to position with async
await servo.move_to(90)
print(f"Position: {servo.position}°")

# Smooth movement
await servo.move_to(45, speed=0.5)

Why robo-infra?

Universal hardware support

Works with any servo, motor, or sensor. PCA9685, GPIO, Arduino, Jetson — one API for all hardware.

Safety built in

Limits, emergency stops, and collision detection included. Robots can hurt, so we made safety non-optional.

AI-native from day one

Export any robot as LLM tools with one line. Let GPT-4 control your hardware using natural language.

Built for any project

From hobby to industrial

Robot Arms
Pick & place, CNC, 3D printers
Rovers
Autonomous vehicles, RC cars
Drones
Quadcopters, fixed-wing
Smart Home
Locks, blinds, feeders
Education
STEM kits, competitions
Industrial
Factory automation

Ready to build?

Control your first servo in under 5 minutes.

Quick Start (5 min)API Reference

What's Included

Actuators

Control any motor or servo

  • Servo, DC, Stepper
  • Linear actuators
  • Grippers

Sensors

Read any input device

  • IMU, encoder, force
  • Distance sensors
  • Temperature

Controllers

High-level robot control

  • Joint groups
  • Diff drive
  • Quadcopter

AI Integration

LLM-ready in one line

  • .as_tools()
  • .as_router()
  • Natural language

Supported Platforms

Raspberry PiJetsonArduinoESP32Simulation+ any hardware