Hello! Please let me know what’s wrong with my blynk account that the Terminal doesn’t display fully. I used the sample code at Blynk Example Browser. I created an account in 2019 and subscribed to the blynk plus package of 159,000 VND/month since blynk 2.0 was launched. I created a new free blynk account and the Terminal works fine.
Hello @quocanhtran2701 . Looks like you use iOS app. Please describe in more detail what you meant. Also please write app version.
Thank you for your support. Yes, I am using the IOS app. Let me describe the problem again. I have been using blynk since 2019. About a year ago, I discovered a bug where the Terminal screen did not display when there was a command to display a text sentence. I only saw this bug appear on the account I have used since 2019. I tried creating a new account and the Terminal worked normally on this account. I use the same control program, the same phone, just a different account. I have attached the image, and the program below. I am using hardware is Arduino Mega 2560 with Ethernet Shield W5100.version of Blynk Iot app is 1.64. The subscription package is the Maker package. Please tell me why? Thank you.
/*************************************************************
This example shows how to use Arduino Ethernet shield (W5100)
to connect your project to Blynk.
NOTE: Pins 10, 11, 12 and 13 are reserved for Ethernet module.
DON'T use them in your sketch directly!
WARNING: If you have an SD card, you may need to disable it
by setting pin 4 to HIGH. Read more here:
https://www.arduino.cc/en/Main/ArduinoEthernetShield
You can send/receive any data using WidgetTerminal object.
App dashboard setup:
Terminal widget attached to Virtual Pin V1
*************************************************************/
/* Fill-in information from Blynk Device Info here */
#define BLYNK_TEMPLATE_ID "TMPL6728AJc-q"
#define BLYNK_TEMPLATE_NAME "RAU KHI CANH"
#define BLYNK_AUTH_TOKEN "aVusnlO3gC7tTeGa2flLJhT3GX8N-Gmd"
/*
#define BLYNK_TEMPLATE_ID "TMPL6E6ANqil1"
#define BLYNK_TEMPLATE_NAME "test terminal"
#define BLYNK_AUTH_TOKEN "RhRj8aNVTU_pUUxP_5n64JFvEb9dnkbY"
*/
/*
#define BLYNK_TEMPLATE_ID "TMPL60CLztWrB"
#define BLYNK_TEMPLATE_NAME "test terminal"
#define BLYNK_AUTH_TOKEN "_j_9LsyDeABhIxL7g0su-8PqMlu5LW-9"
*/
/* Comment this out to disable prints and save space */
#define BLYNK_PRINT Serial
#include <SPI.h>
#include <Ethernet.h>
#include <BlynkSimpleEthernet.h>
#define W5100_CS 10
#define SDCARD_CS 4
// Attach virtual serial terminal to Virtual Pin V1
WidgetTerminal terminal(V5);
// You can send commands from Terminal to your hardware. Just use
// the same Virtual Pin as your Terminal Widget
BLYNK_WRITE(V5)
{
// if you type "Marco" into Terminal Widget - it will respond: "Polo:"
if (String("Marco") == param.asStr()) {
terminal.println("You said: 'Marco'") ;
terminal.println("I said: 'Polo'") ;
} else {
// Send it back
terminal.print("You said:");
terminal.write(param.getBuffer(), param.getLength());
terminal.println();
}
// Ensure everything is sent
terminal.flush();
}
void setup()
{
// Debug console
Serial.begin(115200);
pinMode(SDCARD_CS, OUTPUT);
digitalWrite(SDCARD_CS, HIGH); // Deselect the SD card
Blynk.begin(BLYNK_AUTH_TOKEN);
// You can also specify server:
//Blynk.begin(BLYNK_AUTH_TOKEN, "blynk.cloud", 80);
//Blynk.begin(BLYNK_AUTH_TOKEN, IPAddress(192,168,1,100), 8080);
// Clear the terminal content
terminal.clear();
// This will print Blynk Software version to the Terminal Widget when
// your hardware gets connected to Blynk Server
terminal.println(F("Blynk v" BLYNK_VERSION ": Device started"));
terminal.println(F("-------------"));
terminal.println(F("Type 'Marco' and get a reply, or type"));
terminal.println(F("anything else and get it printed back."));
terminal.flush();
}
void loop()
{
Blynk.run();
}
@quocanhtran2701 we did not found some issue in terminal widget in Maker plan.
A very important detail is that the maker plan has a saving limit of the last 10 lines/values. That is, after refreshing the page or reopening the device, only the last 10 messages will be displayed.
If you have other problems or errors, please describe the problem in more detail.

