error: 'PSTR' was not declared in this scope
example:
Serial.print(F("FAIL")); //print the word 'FAIL' from flash memory, not RAM
vs.
Serial.print("FAIL"); //print the word 'FAIL' from RAM, but this uses RAM very fast
Why am I getting this compile error in Aruino 1.52? Do I need to add another library to be able to simply print from flash on the serial ports or using the LCD library?