I was wondering, if I put an Arduino with a few sensors on let's say a water rocket to track acceleration and height and what not, how would I save this data?
I'm assuming that I want to have a high resolution in my data, so let's say I take a measurement from every sensor every 10ms.
I'm figuring this might be too much to write on a SD card that fast.
The Arduino is obviously not connected via USB, so wired serial monitor doesn't work. I could have a wireless serial output and log the data on a laptop receiving the serial monitor.
Another way I know would be something like MQTT over WiFi - but is it made to handle this much data in a short time?
How would you do it?