Is isp32 good for make a quadcopter?

Hi KarlaSvalina,

Is better use arduino nano or isp32 for quadcopter?

Both the Arduino Nano and ESP32 can make very capable quadcopter flight controllers.

If it's your first flight controller design then personally I'd go with the Arduino Nano.

The Arduino Nano's analogWrite() function on digital pins 3, 9, 10 and 11 conveniently output 8-bit resolution, 490Hz PWM signals for your ESC motor outputs.

The Arduino Micro is also worth a look, it has two 16-bit timers that are capable of outputting four 11-bit resolution, 490Hz PWM waveforms. However, this requires register manipulation of the timers, rather than using analogWrite(). The main disadvantage of the Micro with respect to the Nano is that interrupts are only available on a small number of pins.