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.
Moter.h
00001 #ifndef MBED_MOTER_H 00002 #define MBED_MOTER_H 00003 00004 #include "mbed.h" 00005 00006 class Moter 00007 { 00008 00009 public: 00010 00011 Moter(PinName pwm, PinName in1, PinName in2); 00012 00013 float speed(float speed); 00014 00015 void operator = ( float value ) { 00016 speed(value); 00017 } 00018 00019 protected: 00020 PwmOut _pwm; 00021 DigitalOut _in1; 00022 DigitalOut _in2; 00023 }; 00024 00025 #endif
Generated on Tue Jul 19 2022 22:26:55 by
1.7.2