Finished 2DOF 12V DC wiper arduino playseat

Running simulator build projects.
Please use the image gallery for your pictures, a short tutorial can be found here.
The first image in the first post will be shown in the project gallery.

Re: Finished 2DOF 12V DC wiper arduino playseat

Postby barakeychetan » Wed 24. Aug 2016, 16:17

Hi Racing mat,

Thank you soo much for your reply.

As you said I am planning to use 2 motomonsters, but I just wanted to know will the program of yours remain same even if I use 2 motomonsters...?
I am from Mechanical Background and weak in electronics and programming. Please share a link of program and if someone has used 2 motomonsters.

And can you please help me with the fuse Thing...? like what should I do to protect my H Bridge....


Thank you so much for time and understanding....
barakeychetan
 
Posts: 3
Joined: Fri 19. Aug 2016, 20:08
Has thanked: 1 time
Been thanked: 0 time

Re: Finished 2DOF 12V DC wiper arduino playseat

Postby RacingMat » Wed 2. Nov 2016, 15:23

@ barakeychetan:
no change in the code, you have to wire the motomonster itself: look at the data sheet https://www.zigobot.ch/images/z3063_vnh2sp30.pdf
figure 34 page22
or google for "Monster Moto Shield acts as a single motor driver"

@TheSteeg
theSteeg wrote:Hi Mat
I must ask,
Do I Need to run 24v on a 2dof that moves seat, driver, pedals wheel and frame?
Screen I think will be stand alone.
I see motor monster runs 12v, what do I need to run 24v?

Lastly for now, should I have my screen(40") move with the driver or stationary? How do I decide??

Thanx for all advice
Karl

The heavier your platform is, the more you have to balance the center of gravity above the joint!

My sim moved seat, driver, pedals wheel and frame and was supplied in 12V

Moving the screen is matter of taste and philsophy: personnaly I tested IRL and I didn't like a mobile screen.
2 DOF playseat : arduino, motomonster, 12V truck wiper motors
http://www.x-sim.de/forum/viewtopic.php?f=37&t=943
User avatar
RacingMat
X-Sim Stage 2 edition
 
Posts: 456
Images: 147
Joined: Wed 20. Feb 2013, 21:30
Location: Marseille - FRANCE
Has thanked: 4 times
Been thanked: 130 times

Re: Finished 2DOF 12V DC wiper arduino playseat

Postby yalcin » Mon 13. Mar 2017, 01:01

I thanked the topic. It would be your responsibility.
How can I get the engines out of the Arduino serial port screen?
How can I send data by throwing a loop?So,R7FL7F-RC1LC1-R3FLC1-RC1L3F-R3FL3F-R7FL7F
yalcin
 
Posts: 3
Joined: Sun 12. Mar 2017, 22:02
Has thanked: 2 times
Been thanked: 0 time

Re: Finished 2DOF 12V DC wiper arduino playseat

Postby RacingMat » Mon 13. Mar 2017, 11:19

Sorry, I don't understand your question... :)
the arduino code is available in the post: look in the loop() procedure
2 DOF playseat : arduino, motomonster, 12V truck wiper motors
http://www.x-sim.de/forum/viewtopic.php?f=37&t=943
User avatar
RacingMat
X-Sim Stage 2 edition
 
Posts: 456
Images: 147
Joined: Wed 20. Feb 2013, 21:30
Location: Marseille - FRANCE
Has thanked: 4 times
Been thanked: 130 times

Re: Finished 2DOF 12V DC wiper arduino playseat

Postby yalcin » Mon 13. Mar 2017, 21:32

I want to play the platform constantly without opening the game.
I want to move forward first then right then left then back.
This process will be in a continuous loop.
yalcin
 
Posts: 3
Joined: Sun 12. Mar 2017, 22:02
Has thanked: 2 times
Been thanked: 0 time

Re: Finished 2DOF 12V DC wiper arduino playseat

Postby RacingMat » Wed 15. Mar 2017, 18:44

yalcin wrote:I want to play the platform constantly without opening the game.
I want to move forward first then right then left then back.
This process will be in a continuous loop.


That's feasible: you have to modify the loop() procedure

Code: Select all
void loop()
{
  int sensorL,sensorR;
  readSerialData();   // DataValueR & L contain the last order received (if there is no newer received, the last is kept)
  // the previous order will still be used by the PID regulation MotorMotion Function
  sensorR = analogRead(potR);  // range 0-1024
  sensorL = analogRead(potL);  // range 0-1024

  motorMotion(motRight,sensorR,DataValueR);
  motorMotion(motLeft,sensorL,DataValueL);
}

into something like this:
Code: Select all
void loop()
{
  sensorR = analogRead(potR);  // range 0-1024
  sensorL = analogRead(potL);  // range 0-1024
  for (int i=0; i<255; i++)
  {
  motorMotion(motRight,sensorR, i);
  motorMotion(motLeft,sensorL, i);
  }
}


:)
yours
2 DOF playseat : arduino, motomonster, 12V truck wiper motors
http://www.x-sim.de/forum/viewtopic.php?f=37&t=943
User avatar
RacingMat
X-Sim Stage 2 edition
 
Posts: 456
Images: 147
Joined: Wed 20. Feb 2013, 21:30
Location: Marseille - FRANCE
Has thanked: 4 times
Been thanked: 130 times

Re: Finished 2DOF 12V DC wiper arduino playseat

Postby dimandr » Sun 9. Apr 2017, 11:12

Hi Racing Mat,
This very nice project and I am thinking to built my own using your tutorial. Appreciate that, great job!
I am at the stage of gathering all parts and have few quastions.
I am going to use gear motors from motion dynamics 200watt each and I am wondering if I use this PSU 12V 40A 480watt to supply motors with power.
Would it be enough power for motors and PSU wouldnt be overloaded???
Thank you in advance!
dimandr
 
Posts: 2
Joined: Sun 9. Apr 2017, 10:02
Has thanked: 2 times
Been thanked: 0 time

Re: Finished 2DOF 12V DC wiper arduino playseat

Postby RacingMat » Sun 9. Apr 2017, 19:51

Hi!
it could be enough, depending on your plateform and pilot weight ;)

if not, it"s really simple (and rather cheap) to buy another PSU and to use one PSU per motor
Mat
2 DOF playseat : arduino, motomonster, 12V truck wiper motors
http://www.x-sim.de/forum/viewtopic.php?f=37&t=943
User avatar
RacingMat
X-Sim Stage 2 edition
 
Posts: 456
Images: 147
Joined: Wed 20. Feb 2013, 21:30
Location: Marseille - FRANCE
Has thanked: 4 times
Been thanked: 130 times

Re: Finished 2DOF 12V DC wiper arduino playseat

Postby andrarisciawan » Tue 15. Aug 2017, 17:54

wow is amazing
My name is robot manufacture indonesia yes i am is engginer
andrarisciawan
 
Posts: 4
Joined: Tue 15. Aug 2017, 17:22
Has thanked: 1 time
Been thanked: 0 time

Re: Finished 2DOF 12V DC wiper arduino playseat

Postby RacingMat » Wed 16. Aug 2017, 08:19

Hi! @andrarisciawan :-)

Have you started the building? It's really exciting indeed
Do you prefer plane or car driving?
2 DOF playseat : arduino, motomonster, 12V truck wiper motors
http://www.x-sim.de/forum/viewtopic.php?f=37&t=943
User avatar
RacingMat
X-Sim Stage 2 edition
 
Posts: 456
Images: 147
Joined: Wed 20. Feb 2013, 21:30
Location: Marseille - FRANCE
Has thanked: 4 times
Been thanked: 130 times

PreviousNext

Return to Motion simulator Projects in progress

Who is online

Users browsing this forum: No registered users and 2 guests

cron