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.
Motor.h
00001 #ifndef MBED_MOTOR_H 00002 #define MBED_MOTOR_H 00003 00004 #include "mbed.h" 00005 00006 00007 #define FORWARD 1.0 00008 #define BACKWARD -1.0 00009 00010 00011 class Motor 00012 { 00013 private: 00014 PwmOut IN1_, IN2_; 00015 DigitalOut INH1_, INH2_; 00016 00017 public: 00018 Motor(PinName IN1, PinName IN2,PinName INH1, PinName INH2); 00019 00020 void setSpeed_percent(float percent, float direction); 00021 }; 00022 00023 #endif
Generated on Wed Jul 13 2022 10:19:08 by
 1.7.2
 1.7.2