惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

美团技术团队
J
Java Code Geeks
有赞技术团队
有赞技术团队
GbyAI
GbyAI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
阮一峰的网络日志
阮一峰的网络日志
Microsoft Security Blog
Microsoft Security Blog
IT之家
IT之家
G
Google Developers Blog
月光博客
月光博客
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
S
SegmentFault 最新的问题
博客园 - 三生石上(FineUI控件)
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - Franky
腾讯CDC
V
Visual Studio Blog
博客园 - 【当耐特】
D
Docker
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Engineering at Meta
Engineering at Meta
L
LangChain Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
PID control explained with a line-following robot
I Want To Learn Programming · 2026-06-15 · via DEV Community

I Want To Learn Programming

PID control runs an enormous share of the physical world: thermostats, cruise control, drones, 3D printers, and the steering of self-driving cars. It sounds technical, but a line-following robot makes every part of it intuitive. The robot's job is simple: stay on the line. PID is how it decides how hard to turn.

The setup

A line follower has a sensor that tells it how far off the line it is. Call that the error: zero means dead center, positive means it has drifted right, negative means left. PID turns that error into a steering command, using three terms.

P, the proportional term

The simplest idea: steer in proportion to how far off you are. Drifted far right, turn hard left; barely off, turn gently.

double correction = Kp * error;

P alone often works, but it tends to overshoot and weave across the line, because it only reacts to the current error, not where things are heading.

D, the derivative term

The derivative looks at how fast the error is changing and damps the motion. If the robot is racing back toward the line, D eases off so it does not overshoot. It is the term that smooths the weaving.

double d = Kd * (error - prev_error);
prev_error = error;

P says "how far off am I"; D says "how fast am I correcting," and together they give a smooth approach.

I, the integral term

The integral accumulates error over time, to fix a small, persistent offset that P never quite closes (for example, if the robot consistently rides slightly to one side). It builds up until the bias is corrected.

integral += error;
double i = Ki * integral;

I is powerful but needs care, because the accumulator can grow too large (a problem called integral windup).

Putting it together

double steer = Kp * error
             + Ki * integral
             + Kd * (error - prev_error);

That single line is PID. Tuning the three gains (Kp, Ki, Kd) is the art: too much P weaves, too little is sluggish, D smooths, I removes drift. A line-following robot lets you feel each gain's effect immediately, which is why it is the classic teaching example.

Build it and tune it

The robotics track builds a line-following robot with PID control in C++ and simulation, so you can watch each term change the behavior and tune the gains yourself, graded in your browser. The first project is free.

Understand PID on a line follower, and you understand the algorithm steering drones and cars.