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 PRO1 by
nucleo_servo.h
00001 #ifndef _NUCLEO_H_ 00002 #define _NUCLEO_H_ 00003 00004 class Servo { 00005 00006 public: 00007 Servo(PinName pin); 00008 ~Servo(); 00009 void set_position(float deg); 00010 void turn_left(float deg); 00011 void turn_right(float deg); 00012 private: 00013 PwmOut *servoPWM; 00014 float degrees; 00015 }; 00016 00017 00018 #endif
Generated on Tue Jul 12 2022 22:02:46 by
