amiro-os / devices / DiWheelDrive / linefollow2.hpp @ beb4f137
History | View | Annotate | Download (2.638 KB)
1 | c76baf23 | Georg Alberding | #ifndef AMIRO_LINEFOLLOWING_H
|
---|---|---|---|
2 | #define AMIRO_LINEFOLLOWING_H
|
||
3 | |||
4 | #include <ch.hpp> |
||
5 | 9c46b728 | galberding | #include "global.hpp" |
6 | c76baf23 | Georg Alberding | #include <amiroosconf.h> |
7 | |||
8 | namespace amiro {
|
||
9 | 9c46b728 | galberding | |
10 | 1b3adcdd | galberding | enum class LineFollowStrategy{ |
11 | EDGE_LEFT, |
||
12 | EDGE_RIGHT, |
||
13 | bfffb0bd | galberding | DOCKING, |
14 | 1b3adcdd | galberding | MIDDLE, |
15 | 9c46b728 | galberding | FUZZY, |
16 | NONE |
||
17 | }; |
||
18 | 1b3adcdd | galberding | |
19 | enum colorMember : uint8_t {
|
||
20 | BLACK=0,
|
||
21 | GREY=1,
|
||
22 | WHITE=2
|
||
23 | }; |
||
24 | c76baf23 | Georg Alberding | |
25 | class LineFollow |
||
26 | { |
||
27 | public:
|
||
28 | 1b3adcdd | galberding | |
29 | |||
30 | b8085493 | Georg Alberding | int biggestDiff = 0; |
31 | 12463563 | galberding | Global *global; |
32 | LineFollow(Global *global); |
||
33 | 1b3adcdd | galberding | LineFollow(Global *global, LineFollowStrategy strategy); |
34 | 22b85da1 | galberding | // void calibrateZiegler(float KCrit, int rpmSpeed[2]);
|
35 | 1b3adcdd | galberding | int followLine(int (&rpmSpeed)[2]); |
36 | // int followLeftEdge(int rpmSpeed[2]);
|
||
37 | // int followRightEdge(int rpmSpeed[2]);
|
||
38 | // int followMiddle(int rpmSpeed[2]);
|
||
39 | void setStrategy(LineFollowStrategy strategy);
|
||
40 | LineFollowStrategy getStrategy(); |
||
41 | void setGains(float Kp, float Ki, float Kd); |
||
42 | |||
43 | |||
44 | const int rpmTurnLeft[2] = {-10, 10}; |
||
45 | const int rpmTurnRight[2] = {rpmTurnLeft[1],rpmTurnLeft[0]}; |
||
46 | const int rpmHalt[2] = {0, 0}; |
||
47 | // Definition of the fuzzyfication function
|
||
48 | // | Membership
|
||
49 | // 1|_B__ G __W__
|
||
50 | // | \ /\ /
|
||
51 | // | \/ \/
|
||
52 | // |_____/\__/\______ Sensor values
|
||
53 | // SEE MATLAB SCRIPT "fuzzyRule.m" for adjusting the values
|
||
54 | // All values are "raw sensor values"
|
||
55 | /* Use these values for white ground surface (e.g. paper) */
|
||
56 | |||
57 | const int blackStartFalling = 0x1000; // Where the black curve starts falling |
||
58 | const int blackOff = 0x1800; // Where no more black is detected |
||
59 | const int whiteStartRising = 0x2800; // Where the white curve starts rising |
||
60 | const int whiteOn = 0x6000; // Where the white curve has reached the maximum value |
||
61 | const int greyMax = (whiteOn + blackStartFalling) / 2; // Where grey has its maximum |
||
62 | const int greyStartRising = blackStartFalling; // Where grey starts rising |
||
63 | const int greyOff = whiteOn; // Where grey is completely off again |
||
64 | af93a91c | galberding | |
65 | private:
|
||
66 | int delta();
|
||
67 | 22b85da1 | galberding | int getError();
|
68 | int getPidCorrectionSpeed();
|
||
69 | 1b3adcdd | galberding | void lineFollowing(int (&proximity)[4], int (&rpmFuzzyCtrl)[2]); |
70 | // void defuzz(colorMember (&member)[4], int (&rpmFuzzyCtrl)[2]);
|
||
71 | Color memberToLed(colorMember member); |
||
72 | void defuzzyfication(colorMember (&member)[4], int (&rpmFuzzyCtrl)[2]); |
||
73 | colorMember getMember(float (&fuzzyValue)[3]); |
||
74 | void fuzzyfication(int sensorValue, float (&fuzziedValue)[3]); |
||
75 | void copyRpmSpeed(const int (&source)[2], int (&target)[2]); |
||
76 | 22b85da1 | galberding | |
77 | char whiteFlag = 0; |
||
78 | 1b3adcdd | galberding | LineFollowStrategy strategy = LineFollowStrategy::EDGE_RIGHT; |
79 | bfffb0bd | galberding | float Kp = 0.002; |
80 | 1b3adcdd | galberding | float Ki = 0; |
81 | float Kd = 0; |
||
82 | int accumHist = 0; |
||
83 | float oldError = 0; |
||
84 | int vcnl4020AmbientLight[4] = {0}; |
||
85 | int vcnl4020Proximity[4] = {0}; |
||
86 | c76baf23 | Georg Alberding | }; |
87 | |||
88 | 1b3adcdd | galberding | |
89 | |||
90 | c76baf23 | Georg Alberding | } // end of namespace amiro
|
91 | |||
92 | #endif // AMIRO_LINEFOLLOWING_H |