I am beginner with Arduino. I learnt some example sketchs and found strange operator " -> ". I can't find description in internet. What does it mean? Where I can learn about?
-> derefences a pointer to a struct. In C you pass pointers to structs around (to avoid copying the whole
struct and to allowed shared access to a common instance), and the fields ("members") of the struct
are accessed from the pointer using this operator.
Search for "C operators" and you'll find lots of online docs listing all the C and C++ operators.