kani
Dependencies: 2017NHKpin_config FEP omni_wheel PID R1307 ikarashiMDC
\ ̄\ / ̄/ /l \ \ / / lヽ | ヽ ヽ | | / / | \ ` ‐ヽ ヽ ● ● / / ‐ / \ __ l | ||___|| / l __ / \ \ / \/ /\| 人__人 |/\ <ズワイガニ //\| |/\\ //\| ケガニ |/\\ / . \_____/ \ ┏┓ ┏━┓┏┓ ┏┓ ┏┓┏┓ ┏┓ ┏┓┗┛ ┏┓ ┗┓┃┗┛ ┏┛┗━┓ ┃┃┃┃ ┃┃┏━┛┗┓┏┓┏┛┗━┓┃┃┏┓┏┓┏━━━┓ ┗┓┏━┛ ┃┃┗┛ ┃┃┗━┓┏┛┗┛┗┓┏┓┃┗┛┗┛┃┃┗━━━┛ ┏┛┃┏━┓┃┗━━┓┃┃┏━┛┗┓ ┏┛┃┃┃ ┃┃ ┃┏┛┗━┛┗━━┓┃┃┃┃┏┓┏┛ ┗━┛┃┃ ┃┃┏┓ ┃┃┏━━┓┏━━┛┃┃┃┃┗┛┃ ┏┛┃ ┃┃┃┗━━┓ ┗┛┗━━┛┗━━━┛┗┛┗━━┛ ┗━┛ ┗┛┗━━━┛
bot/PIDcontroller/PID_controller.h
- Committer:
- uchitake
- Date:
- 2017-09-06
- Revision:
- 5:16ea97725085
- Parent:
- 4:1073deb368df
- Child:
- 6:fe9767a50891
File content as of revision 5:16ea97725085:
/** * @file PID_controller.h * @brief コンパスセンサを使ったPIDコントローラ * * Example : * @code * #include "mbed.h" * #include "PID_controller.h" * * PIDC pidc; * * int main() * { * while(1) { * pidc.confirm(); * pc.printf("Hi, %f\r\n", pid.getCo()); * } * } * @endcode */ #ifndef PID_CONTROLLER_H #define PID_CONTROLLER_H #include "mbed.h" #include "pin_config.h" #include "PID.h" #include "HMC6352.h" // const double M_PI = 3.141592653589793; const double KC = 5.2; const double TI = 0.0; const double TD = 0.00; const float INTERVAL = 0.01; const float INPUT_LIMIT = 180.0; const float OUTPUT_LIMIT = 0.4; const float BIAS = 0.0; /** * @brief コンパスセンサを使ったPIDコントローラ */ class PIDC : public PID, HMC6352, Ticker { public : /** * @brief defaultコンストラクタ,タイマ割り込みでの計算開始 */ PIDC(); /** * @brief コンストラクタ * @param sda sda HMC6352 * @param scl scl HMC6352 * @param kc KC * @param ti TI * @param td TD * @param interval interval */ PIDC(PinName sda, PinName scl, float kc, float ti, float td, float interval); void confirm(); void resetOffset(); void resetOffset2(); float getCo() const; int getDegree() const; void calibration(int mode); private : void updateOutput(); int offSetDegree; int offSetDegree2; int turnOverNumber; int beforeDegree; protected : int rawDegree; float co; float processValue; int initDegree; int initDegree2; int baseAngle; }; #endif//PID_CONTROLLER_H