I am trying to do some Raw data handling of an IR Remote with Arduino.
unsigned int ArrayKey[68] = {30868,8900,4400,600,500,600,...,600};
irsend.sendRaw(ArrayKey,68,38);
Now I try to get a Raw IR Data via Serial, but there is a syntax problem:
readString is = 30868,8900,4400,600,500,600,1650,600,550,....
unsigned int ArrayKey[68] = {strtok(readString, ",")};
error: cannot convert 'String' to 'char' for argument '1' to 'char* strtok(char*, const char*)'*