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
RobotArm.h
00001 #ifndef __ROBOTARM_H__ 00002 #define __ROBOTARM_H__ 00003 00004 #include <mbed.h> 00005 #include <PwmServo.h> 00006 00007 class RobotArm { 00008 public: 00009 RobotArm(PinName pin1,PinName pin2); 00010 ~RobotArm(); 00011 void actuate(int angle1,int angle2); 00012 00013 private: 00014 PwmServo* mPwmServo[2]; 00015 }; 00016 00017 #endif /* __ROBOTARM_H__ */
Generated on Sat Jul 16 2022 17:03:40 by
1.7.2
