Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: RampaDiscapacitados
MotorAPasos.h
00001 #ifndef Motor_h 00002 #define Motor_h 00003 00004 #include "mbed.h" 00005 00006 class MotorAPasos 00007 { 00008 public: 00009 MotorAPasos (PinName pin1, PinName pin2, PinName pin3, PinName pin4); 00010 00011 void derecha(); 00012 void izquierda(); 00013 void stop(); 00014 void pasosPorSegundo(int v); 00015 00016 private: 00017 BusOut motor; 00018 int pos; 00019 float vel; 00020 00021 }; 00022 00023 #endif
Generated on Fri Jul 22 2022 09:24:15 by
1.7.2