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.
Fork of Nucleo_CaitSith_Firmware by
PwmServo.h
00001 #ifndef __PWMSERVO_H__ 00002 #define __PWMSERVO_H__ 00003 00004 #include <mbed.h> 00005 00006 /* 00007 00008 Controller firmware for CaitSithDanger 00009 00010 Kyoto-Densou-An 2014 00011 00012 Author : yishii 00013 */ 00014 00015 class PwmServo 00016 { 00017 public: 00018 PwmServo(PinName pin); 00019 ~PwmServo(); 00020 void setAngle(float angle); 00021 00022 private: 00023 static const int PWM_CONTROL_PERIOD = 20; 00024 PwmOut* pwm; 00025 }; 00026 00027 #endif /* __PWMSERVO_H__ */ 00028
Generated on Sat Jul 16 2022 17:03:40 by
1.7.2
