const uint8_t remote[10] = {A1, A0, A3, A2, 2, 3, 6, 5, 8}; //(OFF,ON) (8,9 active HIGH)
Ten elements, but only nine explicitly initialised.
Why?
What does the comment mean?
const uint8_t remote[10] = {A1, A0, A3, A2, 2, 3, 6, 5, 8}; //(OFF,ON) (8,9 active HIGH)
Ten elements, but only nine explicitly initialised.
Why?
What does the comment mean?