If I like to mix "normal" character output with custom characters I use this workaround atm:
lcd.print("this before ");
lcd.write(3);
lcd.print(" this after the custom char");
I have to break the statement in three (or more) parts to add custom characters.
Is there any way to inculde this character in a single string, something like:
char myStringA[ ] = "this before [hmm, what to put here?? for the custom char] this after the custom char";
or
String myStringB = String("this before ") + [hmm, what here?, the custom char] + String(" this after the custom char");