tweakradje wrote:I dunno what GESTURE "06" looks like. Must be a simple one. The logic behing the coding of gestures is not very clear to me yet.
I did some tests according your examples and figured it out - it's quite simple:
You have Points and Directions.
Points are named from "A" to "I" to divide your screen in 9 sections, named from top left "A" to bottom right "I":
Code: Select all+---+---+---+
| A | B | C |
+---+---+---+
| D | E | F |
+---+---+---+
| G | H | I |
+---+---+---+ Directions are numbered from 0 to 7 - top-bottom is 0 and then anticlockwise one number for each straight or diagonal direction:
And finally you define gestures by optionally set the start and end points, followed by the required directions.
So my question for "06" simply means top-bottom-right somewhere on the screen.
I played around with these:
CG7 = top right-bottom left
BI02 = top center-bottom center-bottom right
I hope you all can follow my explanations
