The Association of Model Submariners.

Would you like to react to this message? Create an account in a few clicks or log in to continue.

* THE FORUM FOR ALL THOSE INTERESTED IN BUILDING AND OPERATING MODEL SUBMARINES *


DIY pitch controller 14212712

Just a reminder that this Forum will close for posts next November (2025) . It will continue to be available as a reference on the Wayback Machine https://web.archive.org/

DIY pitch controller 14212712

For a guide to past events see the "Shows and Events" section.
B i
::::

S

P~~~

$$$

Who is online?

In total there are 5 users online :: 0 Registered, 0 Hidden and 5 Guests :: 1 Bot

None


Most users ever online was 180 on Tue Nov 05, 2019 6:03 am

Latest topics

» Microprocessor choices
DIY pitch controller EmptyWed Dec 04, 2024 7:26 am by geofrancis

» Robbe Seawolf V2
DIY pitch controller EmptyWed Dec 04, 2024 7:17 am by geofrancis

» Futaba -868/915mhz equipment
DIY pitch controller EmptyTue Oct 29, 2024 4:46 pm by tsenecal

» RC Drift Gyro for pitch control
DIY pitch controller EmptySun Oct 20, 2024 2:04 pm by geofrancis

» WW2 mini sub build
DIY pitch controller EmptyThu Oct 17, 2024 2:34 pm by geofrancis

» sonar data link
DIY pitch controller EmptyMon Oct 14, 2024 4:31 pm by geofrancis

» ExpressLRS - 868/915 Mhz equipment
DIY pitch controller EmptyFri Oct 11, 2024 8:58 pm by Marylandradiosailor

» Flight controllers as sub levelers
DIY pitch controller EmptyFri Oct 11, 2024 8:14 pm by geofrancis

» 868/915 Mhz as a viable frequency for submarines.
DIY pitch controller EmptyThu Oct 10, 2024 3:21 am by tsenecal

Statistics

Our users have posted a total of 12536 messages in 1992 subjects

We have 1021 registered users

The newest registered user is Mike Echo

3 posters

    DIY pitch controller

    avatar
    tsenecal
    Guest


    Posts : 322
    Join date : 2015-04-01

    DIY pitch controller Empty DIY pitch controller

    Post  tsenecal Fri Apr 22, 2022 5:34 am

    Ran across this video on youtube... thought it might be interesting... i have enough arduinos laying around that i might give this a try...

    https://www.youtube.com/watch?v=gG0X_yIP1oQ

    david f likes this post

    david f
    david f
    AMS Treasurer


    Posts : 2412
    Join date : 2010-11-10
    Age : 74
    Location : Cumbria

    DIY pitch controller Empty Re: DIY pitch controller

    Post  david f Fri Apr 22, 2022 11:39 am

    Nice job but his $5 build price looks like an underestimate in current circumstances!
    (Farnell quotes £8.50 just for the MPU-6050 chip.)
    David
    avatar
    tsenecal
    Guest


    Posts : 322
    Join date : 2015-04-01

    DIY pitch controller Empty Re: DIY pitch controller

    Post  tsenecal Fri Apr 22, 2022 3:12 pm

    david f wrote:Nice job but his $5 build price looks like an underestimate in current circumstances!
    (Farnell  quotes £8.50 just for the MPU-6050 chip.)
    David

    yep, one of my favorite go to places has them on a breakout board for $7.00, but another has them for $32!!!

    I do have a drawer full of arduino micro pros...   i am thinking that i might give it a try when i get some free time.  the nice thing about DIY is that i can add features that no-one else seems to think are important.


    To be honest, the most interesting thing i got from that video was the arduino "ServoInput" library. I never knew that existed, it would clean up quite a lot of my different projects, it should reduce the amount of code i have to write by about 40 lines.

    david f likes this post

    C-3PO
    C-3PO


    Posts : 95
    Join date : 2018-11-21
    Location : Northamptonshire UK

    DIY pitch controller Empty Re: DIY pitch controller

    Post  C-3PO Mon Apr 25, 2022 1:15 pm

    david f wrote:Nice job but his $5 build price looks like an underestimate in current circumstances!
    (Farnell  quotes £8.50 just for the MPU-6050 chip.)
    David

    GY-521 3 Axis Accelerometer Gyroscope module for Arduino MPU-6050 @ Cricklewood Electronics = £3.00 ex delivery - I guess they have not revalued their stock...

    https://www.cricklewoodelectronics.com/GY-521-3-Axis-Accelerometer-Gyroscope-module-for-Arduino-MPU-6050.html

    Regards
    Jonathan

    david f likes this post

    C-3PO
    C-3PO


    Posts : 95
    Join date : 2018-11-21
    Location : Northamptonshire UK

    DIY pitch controller Empty Re: DIY pitch controller

    Post  C-3PO Thu Apr 28, 2022 9:56 am

    The following may be of some use - if nothing else it might save you from a few more grey hairs!!!

    Unless I have picked up the wrong end of the stick completely - it appears that some of the main core mpu6050 Arduino libraries do not work without an amendment to the code.

    I admit this seems very odd ....

    You can only communicate with the mpu6050 once it has been "woken up" which you do by set the " PWR_MGMT_1 register" to zero

    Code:
    Wire.beginTransmission(MPU_addr);
    Wire.write(0x6B);  // PWR_MGMT_1 registe
    Wire.write(0);     // set to zero (wakes up the MPU-6050)
    Wire.endTransmission(true);

    I spent ages with the main mpu6050 library from github and assumed I had a dead chip when nothing worked. I then downloaded another library (mpu6050 light) and the device sprung into life immediatley.

    Libraries
    Struggled with this one without amended code - https://github.com/ElectronicCats/mpu6050

    This fired up first time - https://github.com/rfetick/MPU6050_light

    Hope this may be of some use

    Regards
    Jonathan

    david f and tsenecal like this post


      Current date/time is Thu Dec 12, 2024 8:51 pm