Using gyroscope to run a two wheel board

Is it possible to run a two wheel board with the vesc gyroscopes? For example if I just stuck a single skate truck with two hub motors to the middle of a deck.

2 Likes

I’ve always wanted to build a “manual monster” esk8.

Basically it would be a onewheel build but instead of a onewheel it would be an esk8 that self balances in the “manual” position. Lean forward to accel. Lean back to brake.

Esk8 cool af and no remote required

image

3 Likes

Yea that. Surprised I haven’t read about it being tried yet.

I saw it once a while back. i can’t seem to find it now. the guy was just in perma manual moving around his office. but basically it was controlled like a one-wheel.

I also saw similar done on a bmx bike.

3 Likes

There was this one thread here about it

5 Likes

TLDR Seems to be yes two wheel esk8 self balancing works fine in existing vesc tool. Ability to activate this freely on a regular esk8 “wheelie mode” button yet to be implemented.

2 Likes

Need a wheelie mode button

2 Likes

Omg I wish my ebike had this available. I feel like it would be a fantastic tool for learning non motor assisted manuals.

Good find @glyphiks - I haven’t seen that one before. Makes me want to make one even more now. I just don’t want to spend $2k building a novelty board lol

2 Likes

You can do a continuous power wheelie with this lisp script(props to Mitch Lustig)
But i haven’t tried it and neither should you :joy:

(define #cutoff-angle 20)
(loopwhile t
    (progn
        (define #pitch (rad2deg (ix (get-imu-rpy) 1)))
        (if (> #pitch #cutoff-angle) 
            (conf-set 'l-current-max-scale 0.0)
            (conf-set 'l-current-max-scale 1.0)
        )
        (sleep 0.01)
    )
)
3 Likes

When you say “power wheelie” do u mean just getting the vesc to balance? I assumed running the gyroscope in the vesc is just a couple buttons away. Can u explain how to set up and run the gyroscope so can balance on two skate hub motors?

yess! thanks that’s the one i saw.

1 Like

Your vehicle is basically an onewheel, you have to use the balance app. Mitch Lustig has made something very similar and you can find all the info you need on his channel

3 Likes

Made a wheelie omakase :stuck_out_tongue: Will move the battery in the middle and try to ride it

8 Likes