Newer
Older
See: [Circuit Development](/circuit), [Code Development](/embedded), and [Education](/education)
## What
The MMKBLDC Project is my attempt at building a decent controller for Brushless Motors. BLDCs are excellent sources of mechatronic actuation: they're [power dense](https://jakeread.pages.cba.mit.edu/actuators/) and serve the motion control justice present in most state of the art robotics. However, controlling them is non-trivial, and requires the combination of some EE expertise, some control expertise, and some hardware know-how.


## Why
This project is largely a follow-on to [my Teensy-Powered Brushless Motor Controller](https://github.com/jakeread/tesc), and with this new work, may the TESC project RIP. A moment of silence.
TESC, April 2016 - August 2016
*As the world turns,
so did those motors.
Once around is never enough*
Eulagies aside, I am still motivated to do this. Brushless motors are the go-to motive force for electromechanical systems. By that I mean that just about any time you see a robot-like thing, or machine, moving about, there's a big likelihood that the thing doing-the-moving has a brushless motor in it's guts - or some variant thereof (stepper motors count as BLDCs in my books). See [this characterization of actuators](https://jakeread.pages.cba.mit.edu/actuators/) to get a sense for why.
We use an ATSAMD51 microcontroller to drive phase voltages through a gate driver, through half-bridge drivers, through motor phases. An encoder reads motor position back to the uc, and we use shunt resistors to measure current flowing through the motor coils. With this information, we can use maths to determine where the motor's magnetic field is, and control that to drive position and torque outputs.
This controller runs with the assumtion you're using the [mkxmods](https://gitlab.cba.mit.edu/jakeread/mkxmods) infrastructure for controls. Over the network (see link) you will be able<sup>1</sup> to issue commands like:
*Speed Control*
- use key 129, int32_t speed in rpm
- does closed loop PID control to set RPM for spindle control, mostly
*'Dumb' Torque Control*
- use key 130, int32_t torque val/(2^32) pwm duty
- applies this pwm value to the motor, under simple sinusoid control, to apply closed loop commutation to motor
*'Smart' Torque Control*
- will require some search for FOC implementation, and should reply with available torques, bandwidths, etc... here be dragons
Mostly, contact me and I'll get you set and ready to programme and use the circuit to control bldc motors.
In the [circuit dev page](/circuit) you'll find doc on the BOM for the MKBLDC, and in the [embedded dev page](/embedded) you'll find documentation and source code for the firmware to run it as (along with networking code to send messages over the mkxmods network). This is all under development.