I need this code to show me the QR

This is a code that shows me a text, I want it to be displayed in a QR screen

#include <LCDWIKI_GUI.h> //Core graphics library
#include <LCDWIKI_SPI.h> //Hardware-specific library

#define MODEL ILI9225
#define CS A5
#define CD A3
#define RST A4
#define SDA A2
#define SCK A1
#define LED A0

LCDWIKI_SPI mylcd(MODEL,CS,CD,-1,SDA,RST,SCK,LED);

#define BLACK 0x0000
#define BLUE 0x001F
#define WHITE 0xFFFF

void setup()
{
mylcd.Init_LCD();
mylcd.Fill_Screen(WHITE);

mylcd.Set_Text_colour(BLUE);
mylcd.Set_Text_Size(3);
mylcd.Print_String("Hello", 0, 80);
}

void setup()
{
mylcd.Init_LCD();
mylcd.Fill_Screen(WHITE);

mylcd.Set_Text_colour(BLUE);
mylcd.Set_Text_Size(3);
mylcd.Print_String("Hello", 0, 80);
}

void loop()
{

}

For informed help, please read and follow the instructions in the "How to get the best out of this forum" post, linked at the head of every forum category.

Please use code tags when posting code.

There are nothing related QR in your code. Why do you expect displaying QR from it? Do you have any qr-generating library?

how the dispaly the code in TFF

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.