Lir Instrumentacion
Lir Instrumentacion
Lir Instrumentacion
1
LIR- (Indicador Registrador de Nivel)
ESQUEMATICO.
PANTALLA TFT.
#define Pecho 12
#define Ptrig 13
long duracion, distancia;
void setup(void)
{
tft.reset();
tft.begin(identifier);
tft.fillScreen(BLACK); // Colocamos el fondo del LCD en
Negro
tft.setCursor(207,280);
tft.setTextSize(1); tft.println("Nivel Actual=");
tft.setTextColor(WHITE); tft.setCursor(75, 45); // Situamos el cursor en la
tft.println("-4"); posicion del LCD deseada,
// (X, Y) siendo X el ancho (240 px max.) e
tft.setCursor(221,280); Y el alto (320 px max.)
tft.setTextSize(1);
tft.setTextColor(WHITE); tft.setTextSize(2); // Definimos tamaño del texto.
tft.println("-2"); (Probado tamaños del 1 al 10)
delay(1000);
tft.fillRect(26, 28, 215, 247, BLACK);
}
}