Всем добрый день
Widget terminal processing sign \t is very strange, if you put one \t there is no space at all. And if you put three in a row it puts 2 spaces that are not tied to the line. Is that normal behaivior?
Yes… it is a form of character control \t is tab, others such as \n is a new line and \r is a carriage return. Thus if you actually want to print a backslash, you need to do it twice.
@777 I think if you were using Blynk.virtualWrite() to send the String to the terminal it would work. Are you calling the terminal.flush() somewhere in your code?
Actually I have no idea what the issue was… I was just pointing out that you can’t just print a single backslash… in case that is what the OP was trying to do with all those backslashes
Eg. if you want to print "\ This is a backslash" you need to actually print "\\ This is a backslash"