wvmarle:
Indeed basically straightforward to build but with quite some complications, your hardest part is probably going to be to control those high power hydraulics.
For the bluetooth part, look at the HC-05 or HC-06 modules. Commonly used, should be easy to communicate with your phone.
You'll also have to write your own app for this to use on your phone.
It's good you don't try to control the actual powering of the wheels, as if that goes wrong it's much more likely to be catastrophic.
Do you have any recommendations on how I might go about controlling the hydraulics? I can either run them as a series or run them individually, it hasn't been determined yet. Basically the arduino would just be telling the pump to supply pressure to the hydraulics. From my understanding so far, its a relay that runs from the power supply to the arduino and the hydraulic actuator? If i run it to a series than I think i really only need one signal to the controller. Which would send a signal to the ardunio, starting the electric pump and supplying the needed pressure to the hydraulic actuators. Most pumps come with a switch already and i could probably strip those wires and run them to the ardunio. I would just use a cabled controller but the "client" is asking us to create a wireless one.
DVDdoug:
What you've described seems straightforward and possible. Does your Arduino friend agree? Make sure you've got enough outputs for the number of motors you're driving.
In that case "the Arduino" shouldn't be a big deal. You can get a Wi-Fi or Bluetooth shield and there are programming libraries for these. However, you might need a 5th team member to help with the electrical/electronics. And someone will have to write the phone app. I kinda' feel like the phone app will require more programming (and more difficult programming) than the Arduino...
It wouldn't hurt to learn something new but you don't want to get bogged-down by something that's not in your field-of-study.
Yes my arduino friend believes that it shouldn't be too difficult and that it certainly possible to do. He recommended i ask questions here due to him being busy with his own senior project. I agree with you about the iPhone app, and in fact i might scrap that idea all together. Is it possible to build a simple controller, just a start button for the electric pump and a left and right arrow (or joystick) for the hydraulic actuators?
I know what you mean about not getting bogged-down, but the "client" is asking us to create a wireless controller to turn it, so i really don't have too much of a choice right now.
Robin2:
An alternative to using Bluetooth would be a pair of nRf24L01+ modules - one in the cart and one in a hand-held Arduino unit.
Bluetooth is fine if you have a suitable program on your phone or are capable of creating that program. If not, the nRF24s system may be easier to implement.
...R
Simple nRF24L01+ Tutorial
https://www.amazon.com/Makerfire-Arduino-NRF24L01-Wireless-Transceiver/dp/B00O9O868G
Is that what you are referring too? Then i would just need to buy a receiver for a controller and program that as well?
I think i will drop the bluetooth phone idea, as the consensus seems to be that it will make everything more difficult.