Supprimer 'motion/motion.ino'

This commit is contained in:
Loann RIO 2023-04-24 08:58:00 +02:00
parent 903d3cb88d
commit cfb9bf3bd6
1 changed files with 0 additions and 21 deletions

View File

@ -1,21 +0,0 @@
#include <MeMCore.h>
MeDCMotor _leftMoto(9);
MeDCMotor _rightMoto(10);
void setup()
{
_leftMotor.run(0);
_rightMotor.run(0);
}
void loop()
{
_leftMotor.run(0);
_rightMotor.run(0);
delay(50);
_leftMotor.stop();
_rightMotor.stop();
}