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 class Motor { 00007 00008 public: 00009 00010 Motor(PinName pwm, PinName fwd, PinName rev); 00011 void speed (float); 00012 00013 protected: 00014 PwmOut _pwm; 00015 DigitalOut _fwd; 00016 DigitalOut _rev; 00017 00018 }; 00019 00020 #endif
Generated on Wed Jul 13 2022 21:32:21 by
1.7.2