Modificacion para usar Puente H L298N en vez del integrado L293D
This commit is contained in:
parent
129e386bf9
commit
0c643db7fb
@ -2,12 +2,12 @@
|
|||||||
class Motor_DC
|
class Motor_DC
|
||||||
{
|
{
|
||||||
private:
|
private:
|
||||||
int A;
|
int IN1;
|
||||||
int B;
|
int IN2;
|
||||||
int Pwm;
|
int ENA;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
Motor_DC(int a,int b,int pwm): A(a), B(b),Pwm(pwm){}//Constructor
|
Motor_DC(int in1,int in2,int ena): IN1(in1), IN2(in2),ENA(ena){}//Constructor
|
||||||
void Inicializar_Motor();
|
void Inicializar_Motor();
|
||||||
void Adelante(int Velocidad);
|
void Adelante(int Velocidad);
|
||||||
void Atras(int Velocidad);
|
void Atras(int Velocidad);
|
||||||
|
Loading…
Reference in New Issue
Block a user