print("Hello, ESP32!")
#include <Wire.h>
#include <LiquidCrysta_I2C.h>
//Direccion de la pantantalla LCD (puede ser 0x3F)
LiquidCrysta_I2C 1cd(0x27, 16, 2);
//Pines del sensor ultrasonico
Const int tringPin =5;
Const int echoPin =17;
//LED y buzzer
Const int led =2;
Const int buzzer =4;
long duracion;
float distancia;