#include "pico/stdlib.h"
#include "display_lcd.h"
#define DISPLAY_D4 0
#define DISPLAY_D5 1
#define DISPLAY_D6 2
#define DISPLAY_D7 3
#define DISPLAY_Rs 5
#define DISPLAY_E 6
#define DISPLAY_RW 4
int main ()
{
unsigned int recebe = 0 ;
unsigned char texto_linha_um [17]="Fartec S.A 2024" ;
unsigned char texto_linha_dois[17]="TESTE DISPLAY";
}
while(true)
{
printf("HELO, Denilson!\n");
sleep_ms(250);
system_int();
posicao_cursor_lcd(1,1);
escreve_frase_lcd(texto_linha_um);
posicao_cursor_lcd(2,1);
escrve_frase_ram_lcd(texto_linha_dois);
}