In Arduino programming many times you will come with situations where you want to put double quotes in a string. For example sending AT command with double quotes. There many different methods let’s discuss one by one.
How do I put quotes in a string?
AT+CPMS=”SM”
Serial.println(“AT+CPMS=”SM””); // This results in error
Continue reading Arduino : How to put quotation marks in a string ?