Slow build: Dual Direct Drive, Dual VESC 6, 12s

Hi all!

I’m new to this forum. After watching @pacificmeister’s videos, I really got inspired to start a build, however I realized how complicated it would be to make a system with a gearbox, like he did. I already experimented with bldc motors underwater, and thought about just submerging an large outrunner with a low kv and attaching a prop to it. I kept searching and found @jakebarnhill1’s build. I saw how it was much simpler and cost effective, since it eliminates the requirement of an expensive gearbox.

Additionally, I really would like telemetry to monitor every component’s temperature, current and voltage, since we’re dealing with high power systems, and safety is a major concern. With this in mind, I decided to work with arduino, because it’s relatively simple to implement and I’m familiar with it.

For a safe and reliable esc, I went ahead and decided to use the Vesc 6, since they’re high quality, fully programmable and even have a uart port to send the telemetry values to the arduino, removing the need to use individual sensors. I later decided to use a dual setup, since I thought it would stress less each vesc, by limiting the current of each.

New Vesc 6 Plus (since they stopped selling the regular Vesc 6):
http://www.trampaboards.com/vesc-6-plus-benjamin-vedder-electronic-speed-controller-p-26762.html

For motors, I decided to use the Keda 6364 190kv, since they are cheap, have medium to high quality and were used successfully in @jakebarnhill1 's build. Since I leave near a lake and saltwater is no where near, I don’t think i’ll need to protect the motor’s windings with epoxy, but time will tell if i’ll ever need to do it.

Keda 6364 190kv (sold by HobbyKing):
https://hobbyking.com/en_us/kd-53-30-high-voltage-brushless-outrunner-190kv.html

I’m planning to use two 20ah 6s lipos in series to provide a 20ah 12s pack for plenty of run time and sufficient power (as they’re theoretically rated for around 200A).

Turnigy 20000mah 6s 10c (sold by Hobbyking):

As for the whole control system, it’s almost finished, it’s based around the arduino pro mini. It has ports for the nrf24l01+, a 16x2 lcd display (optional), a momentary ip67 button with led builtin, a port for two optional thermistors (that I’ll use to measure the batteries’ temps) and a port for the ppm & uart communication with the vesc. The main issue was for the communication between the arduino and Vescs, since the documentation was for only using a single Vesc. I ended up using the VescUartControl library and modified it to work with two Vescs over Can-bus. This allowed me to connect the Vescs together with a regular Can-bus cable and only connect the arduino to the master Vesc’s uart port.

For the remote, I decided to model it in Fusion 360 to later on 3D print it.

First Version: Autodesk Viewer | Free Online File Viewer

The first version was a proof of concept. It worked flawlessly. It consisted of a oled display,
a nrf24l01+ module, an arduino pro mini, a vibration motor (for warnings), three WS2812b leds, two buttons for cycling through the screens and another one for triggering the cruise control function, an 18650 cell, a tp4056 charger with a boost converter, and a trigger using a hall-effect sensor. Additionally, it had a accelerometer for detecting the user falling, send a failsafe to the control unit, resulting in the instant stop of the motor.

The main issue with this remote was that it would be very hard to waterproof and it wasn’t very ergonomic. So I changed the design:

I’m still working on the second version, but the main differences are:

  • Builtin QI wireless receiver, allowing for wireless charging, removing the need of a hatch that needed to be waterproofed;

  • Using a 2000mah lipo instead of a 18650 cell;

  • Using two IP67 metal buttons with leds instead of two small buttons with separate leds;

  • Removing the mpu6050 accelerometer to detect a falling user, since it isn’t very accurate in terms of realizing this situation (probably i’ll switch to a JetSki cutoff key like @pacificmeister did)

For the board, I’ll be initially testing the electrical system on a Stand Up Paddle board, for later on buying a foil board.

This is a slow project, I’ll probably finish it by the end of June.

Any feedback is more than welcome! Thanks guys!

8 Likes

This is a simple and inexpensive build and will work, do you have my files for the motor mount, prop adapters and props?

Just one thing that I remember about the motors is that the magnets come unglued from the outside after a while, very simple to epoxy them back on but easily avoided by getting a better quality motor.

Have you ordered the motors yet? If not I would go with an SK3 or similar, but its no big deal to re-glue the magnets after a while if you already have the motors.

Also I would put one or two layers epoxy on the stator so the stator iron doesn’t rust, the coils aren’t the problem but benefit from the added reinforcement as well.

Good luck with it!

1 Like

good idea , I have been thinking myself too to use not use a gearbox and for that I will use a 100kv motor inrunner
so you plan to put the motor directly underwater ? please tell me about the prop you will use.
using 2 motor might not be bad and perhaps you can look into the skateboarding community , we have dual esc , like the enertion unity of flipsky esc.
you have to watch out for the max current you will draw as the VESC is not very highly rated maybe 60 A ? usually all the BOAT esc have 200A or more

I will be eager to see you build and performance

1 - Yes, I do plan on using it directly on water due to simplicity and good cooling.

2 - I’ll use 3d printed props. I’ll start testing with @jakebarnhill1’s version of the PacificMeister prop design, since he used a similar motor to what i’ll use.

3 - The advantage of using two escs (for an efoil/e-surfboard) is that you reduce the load on each esc/motor. The Vesc 6’s that i’m using are rated for 80A, but I’ll probably limit them to around 60A. By setting this current on them i’ll have a sum of 120A (max power of around 6Kw) and not stress the batteries too much.

4 - I’ll make sure to keep posting my progress, but i’m still waiting for the batteries and motors to be back in stock.

Thanks for the feedback!