Nodebot code
var motor = new five.Motor(pins: {dir:11, pwm: 3});
motor.forward(150);
motor.stop();
motor.reverse(150);
The...