Search found 4 matches
- Thu Mar 08, 2012 9:11 pm
- Forum: Projects
- Topic: Personal G-Force Meter
- Replies: 66
- Views: 140188
Re: Personal G-Force Meter
Thanks a lot, I'll keep in touch with you.
- Thu Mar 08, 2012 6:22 pm
- Forum: Projects
- Topic: Personal G-Force Meter
- Replies: 66
- Views: 140188
Re: Personal G-Force Meter
Hi Tudy, Sorry about that. I thought that tutorial did a 3-axis example...my memory is fading I guess. Heh, no problem. The easiest way to get acceleration data from 2 different outputs is to connect each output to a seperate A/D. So for example if you connect X acceleration out to ADC0/RA0 and Y a...
- Thu Mar 08, 2012 11:29 am
- Forum: Projects
- Topic: Personal G-Force Meter
- Replies: 66
- Views: 140188
Re: Personal G-Force Meter
Yes, but this tutorial shows getting data only in one axis - so the software in it is created for only one axis. I'm building Personal G meter for my school project, and I would like to measure G force in two directions (because I bought ADXL320 which doesn't have Z axis, it has only X and Y) but I ...
- Wed Mar 07, 2012 10:19 pm
- Forum: Projects
- Topic: Personal G-Force Meter
- Replies: 66
- Views: 140188
measuring G's on X and Y axis
Hi there, does this software which posted nite work properly for measuring G's on dual axis??? ConvertADC(); while( BusyADC() ); current_result = ReadADC(); temp = current_result - past_result; SetChanADC(ADC_CH1); ConvertADC(); while( BusyADC() ); current_result_y = ReadADC(); temp_y = current_resu...