[ENG] Read Data // [SPA] Leer datos

[ENG]---------------------------------------------------------

Hello!
I'm writing my first Arduino sketch and I have a problem.
I have connected my Arduino via WiFi with the PC running LabVIEW and I'm sending a random integer to LabVIEW so it can read it and send it back.
It is working perfectly but the problem comes when I try and print the int that the PC sends back so I can check if it's what I expect.

I have tried with:

int dataRead = udp.read(packetBuffer, 255);
Serial.println(packetBuffer);
Serial.print("Data in UDP packet: ");
Serial.println(dataRead);

but it prints the packet size, not the content of the variable.

Any idea about how can I solve it? It would be highly appreciated :slight_smile:

[SPA]---------------------------------------------------------

¡Hola!
Estoy escribiendo mi primer sketch de Arduino y tengo un problema.
He conectado mi Arduino a través de WiFi con el PC que ejecuta LabVIEW y estoy enviando un int aleatorio a LabVIEW para que pueda leerlo y enviarlo de vuelta.
La conexión funciona bien, pero el problema surge cuando intento imprimir el int que el PC me envía para poder verificar si es lo que esperaba.

Lo he intentado con:

int dataRead = udp.read (packetBuffer, 255);
Serial.println (packetBuffer);
Serial.print ("Datos en paquete UDP:");
Serial.println (dataRead);

pero imprime el tamaño del paquete, no el contenido de la variable.

¿Alguna idea de cómo puedo solucionarlo? Muchas gracias por la ayuda :slight_smile:

but it prints the packet size, not the content of the variable.

It should print both if the rest of the code doesn't contain an error. As we cannot see the rest of the code it's up to you to find the corresponding error.