The robotics community, all in one place
Find your people in robotics.
Robotic Forums is a hand-picked directory of the best places to talk robotics online — forums, subreddits, Q&A sites and chat servers — plus plain-English guides to help you get started and ask better questions.
- 30active communities
- 7categories
- Freeto join, all of them
One front door to the whole robotics world
Robotics is huge — and the people building it are scattered across dozens of forums, subreddits, Discord servers and Q&A sites. If you are learning ROS, wiring your first Arduino, mentoring a FIRST Robotics team or shipping an industrial arm, there is an active community out there for you. The hard part is knowing where it lives.
That is what Robotic Forums is for. We keep a hand-checked list of the communities that are genuinely active and worth your time, sorted by what they are good at. No dead links, no abandoned message boards — just the places where real robotics conversations are happening right now. Pick a category below and jump straight in.
Robotics & AI
Robotics and AI: how artificial intelligence (AI) powers modern robots
Robotics and AI used to be largely separate disciplines. A robot was mechanical hardware running fixed, hand-written instructions, while artificial intelligence lived in software that reasoned about data on a screen. Today the two fields are converging fast: the robot is the body, and AI is increasingly the part that perceives, decides, and adapts. For a machine to act usefully in the messy physical world, it has to turn raw sensor signals into an understanding of its surroundings, choose what to do next, and adjust when reality does not match the plan. That loop of sense, decide, and act is exactly where modern artificial intelligence has the most to offer robotics.
On the perception side, computer vision and other sensor processing let a robot build a working model of its environment from cameras, depth sensors, and LiDAR. Machine learning, and especially deep neural networks, has made this far more capable than the rule-based methods that came before, so robots can now recognize objects, estimate their poses, and map unfamiliar spaces in real time. Control and decision-making increasingly lean on reinforcement learning, where a policy improves by trial and error against a reward signal, and on the newer wave of foundation and vision-language-action (VLA) models that connect what a robot sees and what it is told to do with the motor commands it produces. None of this is magic: these systems are powerful pattern learners trained on past data, and they can still fail in unfamiliar situations, so good robotics engineering pairs them with safety limits, testing, and human oversight.
Two practical realities tie it all together. First, training on real hardware is slow, costly, and sometimes dangerous, so much learning now happens in physics simulation and is then transferred to real robots, a process called sim-to-real that hinges on closing the reality gap between simulated and physical behavior. Second, robots often cannot rely on a distant data center for split-second decisions, which is why edge AI, running models directly on the robot's onboard compute, matters for latency, reliability, and privacy. Whether you are a hobbyist wiring up your first vision-guided arm or an early-career engineer deploying autonomous systems, understanding how these pieces fit together is the foundation of working in robotics and AI today.
Perception & computer vision
Cameras, depth sensors and LiDAR feed machine-learning models that detect objects, estimate pose and map surroundings — turning raw signals into spatial understanding a robot can act on.
Reinforcement learning for control
Instead of hand-coded motions, a policy learns by trial and error against a reward signal — discovering robust locomotion and manipulation skills that are hard to program explicitly.
Foundation & vision-language-action models
Models like RT-2, OpenVLA and π0 map what a robot sees and is told into motor commands, aiming to generalize across related tasks rather than being built from scratch for each job.
Simulation, sim-to-real & edge AI
Robots learn cheaply and safely in physics simulators, then transfer skills to hardware, while edge AI runs those models onboard for low-latency, reliable decisions without the cloud.
Where the robotics & AI community gathers
The premier Reddit ML community — research, deep-learning papers and robotics machine learning.
Focused community for reinforcement learning — robot control, policy learning and simulation.
Reddit hub for computer-vision techniques that power robot perception and scene understanding.
The official OpenCV community for the vision library at the heart of real-world robotics.
NVIDIA's official forum for deploying edge AI on Jetson hardware in robots.
Dedicated forum for NVIDIA Isaac ROS — GPU-accelerated robot perception and navigation.
The official PyTorch board; its Vision and RL categories directly support robotics ML work.
Hugging Face's community forum, home to active LeRobot and robotics-ML discussion.
Hugging Face's open robotics-AI project — models and datasets you can build on.
Q&A for AI theory and practice, including robotics AI and reinforcement-learning fundamentals.
Find your robotics community
The most active forums, Q&A sites and discussion hubs — grouped by what they do best. All free to join.
General forums
The official hub for the Robot Operating System ecosystem — news, support and discussion for all ROS versions.
The official Arduino community for hardware and software questions, projects and code troubleshooting.
Broad robotics forum covering beginner projects, component help, tutorials and industry news.
A premier electronics-engineering forum — invaluable for the hardware and microcontroller side of robotics.
Maker & electronics
Official Adafruit support covering CircuitPython, Feather boards and maker electronics for robots.
SparkFun's forum with a dedicated robotics category, plus sensors, GPS and IoT discussion.
The world's largest open-hardware project repository, with a strong robotics and embedded community.
Step-by-step robot build guides ranging from absolute-beginner to competition-level projects.
Reddit communities
The largest general robotics subreddit — news, projects, questions and career discussion.
Massive microcontroller community — wiring, code and first-robot projects.
Single-board-computer community behind a huge share of DIY robotics and automation builds.
The Robot Operating System subreddit — the fastest-growing robotics community on Reddit.
Q&A & expert help
A moderated Stack Exchange site for precise, citable robotics-engineering questions and answers.
A dedicated, beginner-friendly Q&A subreddit for robotics questions of all levels.
Competition & education
The de-facto primary community for FIRST Robotics Competition — technical, strategy and team discussion.
The official FIRST Tech Challenge forum for teams, coaches and event organizers.
Subreddit for FIRST Robotics Competition teams, students and mentors.
Community for FIRST Tech Challenge participants, coaches and enthusiasts.
Real-time chat
Open Robotics' official real-time chat (migrated from Discord in 2025) covering ROS, Gazebo and Open-RMF.
A large, unofficial Discord for FIRST Robotics Competition students, mentors and alumni.
Know an active community we should add? It will live here as the directory grows.
Start here: robotics for newcomers
Short, no-nonsense guides to help you take the first step and get more out of every community.
Getting started in robotics
Pick a first project you can actually finish, buy the right hardware, and follow a sane learning path from your very first build.
Arduino vs Raspberry Pi vs ROS
What each one actually is, where each shines, and how real robots combine all three — Pi as brain, Arduino as muscles, ROS to coordinate.
Ask questions that get answered
Get fast, useful help: choose the right community, state your goal, share exact versions, and post a minimal reproducible example.
Robotics glossary
The terms you will see most often in forums and Q&A threads, in plain English.
- ROS / ROS 2
- The Robot Operating System — open-source middleware that connects a robot's sensors, motors and logic. The de-facto standard in research and industry.
- Actuator
- Any component that produces motion — a motor, servo or hydraulic cylinder. The "muscles" of a robot.
- SLAM
- Simultaneous Localization and Mapping — how a robot builds a map of an unknown space while tracking its own position within it.
- PID controller
- A control loop (Proportional-Integral-Derivative) that smoothly drives a value — like speed or position — to a target without overshooting.
- IMU
- Inertial Measurement Unit — a sensor combining accelerometers and gyroscopes to report orientation and motion.
- End effector
- The tool at the end of a robot arm — a gripper, welder, or suction cup — that actually does the work.
- Kinematics
- The math of how a robot's joints translate into the position of its parts. "Inverse kinematics" solves the reverse: which joint angles reach a target.
- LiDAR
- A laser-based sensor that measures distance to build precise 2D or 3D maps of surroundings — central to most autonomous navigation.
- Servo
- A motor with built-in position feedback, so it can be commanded to a precise angle. Common in arms, legs and steering.
- Degrees of freedom (DOF)
- The number of independent ways a robot can move. A typical industrial arm has six.
- Teleoperation
- Controlling a robot remotely in real time, often as a fallback or for tasks too complex to fully automate.
- Microcontroller
- A tiny, low-power computer on a single chip (like an Arduino) that handles real-time control of sensors and actuators.
Frequently asked questions
What is Robotic Forums?
A curated hub that points you to the most active robotics communities online — forums, subreddits, Q&A sites and chat servers — alongside beginner guides and a glossary, so you can quickly find the right place to ask questions, share builds and learn.
Which robotics forum is best for beginners?
For general questions, r/AskRobotics and the Arduino Forum are the most welcoming, while RobotShop's community is great for hardware help. If you are using ROS, ROS Discourse is the canonical place to learn.
Is Reddit a good place to discuss robotics?
Yes. r/robotics is the largest general robotics community, with active news, project and career discussion. More specific subreddits like r/ROS, r/arduino and r/raspberry_pi are excellent for focused technical help.
Where do professionals discuss ROS and ROS 2?
ROS Discourse is the official discussion forum maintained by Open Robotics, and Robotics Stack Exchange is the best place for precise, citable engineering questions and answers.
How do I get good answers when I ask a question?
Pick the community that matches your topic, describe your hardware and software versions, share what you have already tried, and include code, wiring photos or error messages. A clear, reproducible question gets far better answers. (See guide 03 above.)
Do I need to register to use these communities?
Most communities let you read freely without an account, but you will need to register to post questions or replies. Every community we list is free to join.
Ready to jump in?
Pick a community, introduce yourself, and post your first question or build. The robotics world is more welcoming than you think.
Browse all communities