New to Arduino.
Still waiting for my 1st UNO PCB.
I have a few questions about Strings:
I understand from documentation the following code places, Breakfast Time, into Main memory, saving EEPROM, which then can be printed to the Serial Port.
Serial.println(F("Breakfast Time")); // For Arduino >Version 1.0
1. Is there a way of printing the same string, in main memory, to a LCD display?
2. Can a RAM Array be assigned to, F("Breakfast Time")?
Example: char Line1[ ] = F("Breakfast Time");
3. In the next example where is the string "Testing 12345" physically stored.
Serial.println("Testing 12345");
4. If the answer in #3 is in “RAM”, and I down load the code to the Arduino UNO. What happens to the string if I remove the chip from the Arduino PCB
and use the Atmega328 I.C. on a Bread Board in a stand-alone experiment?