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.
Dependencies: MPU6050-DMP QEI_hw mbed-rpc mbed
Fork of MPU6050_Example by
Diff: Comm/CommDelegate.h
- Revision:
- 10:769cc457c3a4
- Parent:
- 9:1d9b24d7ac77
- Child:
- 11:711d3c207e8c
--- a/Comm/CommDelegate.h Sat Dec 05 00:40:42 2015 +0000 +++ b/Comm/CommDelegate.h Sat Dec 05 09:04:23 2015 +0000 @@ -16,12 +16,12 @@ //gains void virtual setSwingUpK(float k){}; void virtual setSwingUpD(float d){}; - void virtual setK2(float k2){}; - void virtual setD2(float d2){}; + void virtual setCurrentP(float p){}; + void virtual setCurrentD(float d){}; float virtual getSwingUpK(){return 0;}; float virtual getSwingUpD(){return 0;}; - float virtual getK2(){return 0;}; - float virtual getD2(){return 0;}; + float virtual getCurrentP(){return 0;}; + float virtual getCurrentD(){return 0;}; //target void virtual setTargetPosition(int position){};