#include "MeMCore.h" MeDCMotor motor1(9); MeDCMotor motor2(10); void setup() { // put your setup code here, to run once: } void loop() { motor1.run(-100); motor2.run(100); delay(2000); motor1.stop(); motor2.stop(); delay(2000); }