Algorithm template-PID

Source: Internet
Author: User

Int Error [3] = {0, 0}; int Pwm; int Kp, Ki, Kd; int speed [2]; int base_speed; void Mot_PID (int now_cnt, int target_cnt) {Error [2] = Error [1]; Error [1] = Error [0]; Error [0] = (target_cnt-now_cnt)> 3; pwm = Pwm + Kp * (Error [0]-Error [1]) + Ki * Error [0] + Kd * (Error [0]-2 * Error [1] + Error [2]); if (Pwm> 0) {if (Error [0]> 11) Pwm = 1000; if (Pwm> 1000) Pwm = 1000; PWMDTY23 = Pwm; PWMDTY45 = 0;} else {Pwm =-Pwm; // if (Error [0] <-11) Pwm = 1000; // bang-bang PWMDTY23 = 0; PWMDTY45 = Pwm ;}} // ************************************* void mot_Ctrl (int center_n) {int y; y = speed [0] * 10 + (speed [1]-speed [0]) * center_n/4; // get target speed Mot_PID (y );}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.