+ 2
I want to make Drone. What is the best? Arduino or Raspberry pi
arduino raspberry pie c c++
6 Answers
+ 3
Raspberry pi features: 17 gpio, 64gb sdcard, extend,
Arduino features: 20gpio, 32kb storage,
+ 2
Think big: Arduino and Raspberry Pi!
+ 2
Raspberry pie will be more helpful to control image as well as image processing and transmission over network too. for just flying they would not make much difference.
+ 1
Arduino
0
I'll go with Arduino bacause of its performance also if you don't know there is an flight controller named as "Ardupilot" or "APM" especially known for its GPS modes and mission planning (waypoints ).
for more you can also use a STM32F1 Board it is faster than an arduino but not have much CPU and Memory as compared to an Arduino also its performance and memory are also being developed like the newer boards e.g STM32F4 Its completely better than any of Arduino.
hope it help ;-)
0
Arduino is better for more complex robotics or other projects that are very dedicated, since it's a microcontroller and therefore has low-latency. RasPi has more processing power and memory, but since it's a computer running an OS and has task polling/switching (IRQ0), other tasks can interrupt the code ever so slightly, which matters when you're dealing in real time.