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: CustomExplorerRobot_test
BD6212.h
00001 #ifndef MBED_BD6212_H 00002 #define MBED_BD6212_H 00003 00004 #include "mbed.h" 00005 /** BD6212 control with direct PWM class 00006 */ 00007 class BD6212{ 00008 public: 00009 00010 BD6212(PinName fwd, PinName rev); 00011 00012 void speed(float speed); 00013 00014 void coast(void); 00015 00016 void operator= ( float value ) 00017 { 00018 speed(value); 00019 } 00020 00021 protected: 00022 PwmOut _fwd; 00023 PwmOut _rev; 00024 float bspeed; 00025 }; 00026 00027 #endif
Generated on Tue Jul 19 2022 20:04:29 by
1.7.2
Custom Explorer Robot