discoverpixy
pixy_control.h
Go to the documentation of this file.
1 /**************************************************************************************************************************************
2 * Project: discoverpixy
3 * Website: https://github.com/t-moe/discoverpixy
4 * Authors: Aaron Schmocker, Timo Lang
5 * Institution: BFH Bern University of Applied Sciences
6 * File: common/app/pixy_control.h
7 *
8 * Version History:
9 * Date Autor Email SHA Changes
10 * 2015-06-02 aaron@duckpond.ch e018a75 Implemented basic pi and pid controller
11 * 2015-06-06 aaron@duckpond.ch 8c264c2 Comment refactoring, updated PID values
12 * 2015-06-06 aaron@duckpond.ch a04cda9 Refactured comments and implemented a bugfix for the PID controller
13 * 2015-06-07 aaron@duckpond.ch 802d3df Fixed pid controller and refactored code
14 * 2015-06-07 timolang@gmail.com c87220d Renamed pixy_helper to pixy_frame. Updated docu of appliaction. added doxygen comments to pixy_{frame,control}.h
15 *
16 **************************************************************************************************************************************/
17 
18 #ifndef PIXY_CONTROL_H_
19 #define PIXY_CONTROL_H_
20 
21 #include<stdint.h>
22 
27 
33 
34 
39 
46 int16_t pixy_PID_Y(int16_t x, int16_t w);
47 
54 int16_t pixy_PID_X(int16_t x, int16_t w);
55 
58 #endif /* PIXY_CONTROL_H_ */
int16_t pixy_PID_X(int16_t x, int16_t w)
Definition: pixy_control.c:67
int16_t pixy_PID_Y(int16_t x, int16_t w)
Definition: pixy_control.c:44