Sending a value of 0 will rotate the motor all the way to the left while 180 will rotate the motor all the way to the right. The motor can only go between 0 and 180. The wires should be plugged in from bottom to top: brown, red, orange. The top of the module is the edge with the icon.
What ports can I use it on?
All of them!
Code
usingMagic;publicclassDemo:MonoBehaviour{ // create a reference to the modulepublicMagic.Modules.MoveModule move;voidStart() { }voidUpdate() { // call the module's functionmove.SetDegree(90); }}