Compile issue with "char[] json"
Created by: guibom
Using the Arduino IDE 1.0.5, I can't compile the example because of the char[] json
variable. It gives an error: expected unqualified-id before '[' token
If I replace it by char* json
or char json[]
it seems to work.