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.
HBridge.h
00001 #include "mbed.h" 00002 00003 #ifndef HBRIDGE_H 00004 #define HBRIDGE_H 00005 00006 class HBridge { 00007 public: 00008 HBridge(PinName pwm_pin, PinName min_1_pin, PinName min_2_pin, float pwm_period); 00009 00010 float output; 00011 00012 00013 void set_output(float output); 00014 void forward(); 00015 void back(); 00016 void initialize(); 00017 00018 private: 00019 PwmOut pwm_pin_; 00020 DigitalOut min_1_pin_; 00021 DigitalOut min_2_pin_; 00022 00023 }; 00024 00025 #endif
Generated on Tue Jul 12 2022 15:35:31 by
1.7.2