Tinkercad does not have a native, "one-click" PID control block or component. However, you can fully implement PID control within Tinkercad using the Arduino Uno and custom code (either Blocks or C++). How to use PID in Tinkercad

void setup() pinMode(ledPin, OUTPUT); Serial.begin(9600);

// Proportional term double Pout = Kp * error;

To build a PID controller in Tinkercad, you typically need these core items: The "brain" that runs the PID math.