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.
Gait.h
00001 #ifndef HEXAPOD_GAIT_H 00002 #define HEXAPOD_GAIT_H 00003 00004 #include "mbed.h" 00005 #include "PCA9685.h" 00006 #include "HEXAPOD_LEG.h" 00007 #include "Tripod.h" 00008 00009 class Gait { 00010 00011 public: 00012 Gait(Tripod tripod_1, Tripod tripod_2); 00013 void start(int group); 00014 void stop(void); 00015 00016 private: 00017 void time_1(void); 00018 void time_2(void); 00019 00020 private: 00021 Timeout tripod_1_timeout; 00022 Timeout tripod_2_timeout; 00023 00024 Tripod group_1; 00025 Tripod group_2; 00026 00027 }; 00028 00029 #endif
Generated on Tue Dec 6 2022 11:56:05 by
1.7.2