Hi,
I had purchased makeBlock TFT screen from local distributor.
Next code;
#include "MeBaseBoard.h"
#include <SoftwareSerial.h>
MeSerial mySerial(PORT_5);
void draw_solid_rectangle(void)
{
mySerial.print("CLS(0);"); // clear the screen with c color
mySerial.print("DR0;"); // the screen displays in upright way
mySerial.println("BOXF(0,0,320,240,4);");
}
void setup() {
mySerial.begin(9600);
draw_solid_rectangle();
}
void loop() {
// put your main code here, to run repeatedly:
}`
Brings me a next screen:
Can it be somethings else, except faulty screen unit?
Best regards,
Baruch