how to connect bmp085 hmc5883l and bma180 to Paris v4
how to connect bmp085 hmc5883l and bma180 to Paris v4
has anyone did this before? i was using a MP+ and NK but the NK sucks. so i bought the bma180. while i was at it i bought the 5883 and bmp085. now i am not sure on how to connect everything to the Paris V4 board. any ideas?
- NikTheGreek
- Posts: 348
- Joined: Thu Dec 08, 2011 4:17 pm
- Location: Greece
- Contact:
Re: how to connect bmp085 hmc5883l and bma180 to Paris v4
Can you please post some pics of the boards ?
Re: how to connect bmp085 hmc5883l and bma180 to Paris v4
here you go. these are some images of my boards and some i found on the internet
- Attachments
-
- 09723-03_i_ma.jpg
- (36.94 KiB) Not downloaded yet
-
- 09723-02_i_ma.jpg
- (36.52 KiB) Not downloaded yet
-
- bmp085.jpg
- bmp085 (found online)
- (24.54 KiB) Not downloaded yet
-
- bma180.jpg
- bma180 (found online)
- (23.2 KiB) Not downloaded yet
- NikTheGreek
- Posts: 348
- Joined: Thu Dec 08, 2011 4:17 pm
- Location: Greece
- Contact:
Re: how to connect bmp085 hmc5883l and bma180 to Paris v4
I m not sure about my answer. So i don't want to say something that will harm your boards.
Sorry
Sorry

Re: how to connect bmp085 hmc5883l and bma180 to Paris v4
well just post it. better something then nothing.
Re: how to connect bmp085 hmc5883l and bma180 to Paris v4
i figured it out and got all the sensors working.
quick question
i mounted my HM5883l on the underside of the paris v4 board. now do i change the orientation variables via config.h or the sensors file??? also do i have to put a negative on all values x,y,z or just y,z since x is pointed in the correct direction but just flipped upside down.
how do i enable mag and baro with a dx6i? the acc (selfleveling is set for the gyro switch). i can enable them through the gui.
quick question
i mounted my HM5883l on the underside of the paris v4 board. now do i change the orientation variables via config.h or the sensors file??? also do i have to put a negative on all values x,y,z or just y,z since x is pointed in the correct direction but just flipped upside down.
how do i enable mag and baro with a dx6i? the acc (selfleveling is set for the gyro switch). i can enable them through the gui.
- NikTheGreek
- Posts: 348
- Joined: Thu Dec 08, 2011 4:17 pm
- Location: Greece
- Contact:
Re: how to connect bmp085 hmc5883l and bma180 to Paris v4
i mounted my HM5883l on the underside of the paris v4 board. now do i change the orientation variables via config.h or the sensors file??? also do i have to put a negative on all values x,y,z or just y,z since x is pointed in the correct direction but just flipped upside down.
In congig.h you will find ...
Code: Select all
/* individual sensor orientation */
//#define ACC_ORIENTATION(X, Y, Z) {accADC[ROLL] = Y; accADC[PITCH] = -X; accADC[YAW] = Z;}
//#define GYRO_ORIENTATION(X, Y, Z) {gyroADC[ROLL] = -Y; gyroADC[PITCH] = X; gyroADC[YAW] = Z;}
//#define MAG_ORIENTATION(X, Y, Z) {magADC[ROLL] = X; magADC[PITCH] = Y; magADC[YAW] = Z;}
Change the values according your needs
