Hi, im trying to control coin motor with my Arduino Nano 33 IoT. I’ve set up the circuit on Tinkercad using Arduino Uno (i don’t think they have nano option on Tinkercad). It seems to working on the simulation. Would the same setup work on Arduino Nano 33 IoT. I realized that Uno and Nano has different current output from the digital pin. If it wouldn’t work, how should I change the set up?
The code that im testing the system with is just simple turn on and off code:
const int motorPin = 3;
void setup()
{
pinMode(motorPin, OUTPUT);
}
void loop()
{
digitalWrite(motorPin, HIGH);
delay(5000);
digitalWrite(motorPin, LOW);
delay(1000);
}
I’ve attached the circuit diagram that I referenced from this website(How to Build a Vibration Motor Circuit)
The capacitor is 0.1μF, and the transistor is NPN

