Filtering?
Thric
Posts: 109
Does anyone have experience in sensor fusion and filtering methods using the Propeller? I know that Cessna Pilot (http://obex.parallax.com/objects/318/) created some really nice programs using the um-FPU however i was wondering if a program exists that does away with the external processor as its $20.
Thanks
Thanks
Comments
How many samples per second and how many inputs?
In one of my projects, I handle 16 analog inputs from a SPI ADC and integrate each value over time at a rate of ~6 kHz. This is all done in a single COG and then written to HUB ram.
I'm trying to fuse/filter together acceleration, gyroscope, and magnetic sensor values (or maybe just two together like acceleration and gyroscope) to reduce the noise I get in each sensor and the drift that occurs too. I've hear about kalman filtering, but the math for it is way over my head.
The sensors that i'm using are all digital however I'd like to have a refresh rate of at least 500Hz hopefully more.
After being filtered/fused I want it to just write it to hub ram for another cog to use.
Thanks