String mensaje = "";
      uint16_t nbyte = 0;
#include <ArduinoJson.h>
void setup() {
  // put your setup code here, to run once:
  Serial.begin(115200);
  Serial.println("Hello, ESP32!");
  
}

void loop() {
  // put your main code here, to run repeatedly:
  delay(10); // this speeds up the simulation
  if (Serial.available ( )){

 byte_x_byte();
 DynamicJsonDocument doc ( 1024 ); 
deserializeJson(doc, mensaje);
int sensor = doc["sensor"];
uint32_t tiempo = doc["time"];
Serial.println("Objeto json: ");
Serial.println(tiempo);
mensaje = "";
  }
 
}

void byte_x_byte ( void ) {

      while ( Serial.available ( ) != 0 ) {

        nbyte++;
        mensaje += (char)Serial.read ( ) ; 

      }

      Serial.println ( F ( "Cantidad de bytes recibidos: " ) );
      Serial.println( nbyte  );

      Serial.print ( "El mensaje recibido fue: " );
      Serial.println ( mensaje );
      
      nbyte = 0;

}