Hi there,
I have been using a Wemos d1 mini and an Iphone 6S for my project with Blynk for some time without any problems.
However, I wanted to display the time and date from a real time clock on my
Blynk app. So I loaded the terminal widget. However, I am getting error messages
when I compile the program using the Arduino IDE and the terminal.print command.
The error message is âinvalid conversion from âconst char to intâ [-fpermissive]â
I wanted to use the terminal program so that I could clear the screen between writes.
Actually, it would be useful to have a one line text and data widget.
WidgetTerminal terminal(V10);
void timer() {
Blynk.virtualWrite(V10, "Test "); //THIS WORKS
terminal.print(V10, "Test "); //THIS DOES NOT WORK
}
void loop()
`
thanks in advance