problema con el puerto en teensy 4.0

Falleli

New member
Estoy con el audio-guestbook y estoy teniendo problema con la conexión puero ,esta todo el tiempo intentando conectarse y desconectarse. Gracias
 
this ...
Code:
I'm with the audio-guestbook and I'm having trouble with the connection because it's all the time trying to connect and disconnect. Thank you

... might get better response on a thread for the guestbook

If the 'disconnect' comes after about 8 seconds and repeats the code is probably crashing and restarting.

If so in setup:
Code:
while (!Serial) ; // wait
if ( Serial && CrashReport ) {
  Serial.print( CrashReport );
}

Would show that to be the case and give a way to start identifying the issue perhaps.
 
Hola de nuevo y gracias por tu respuesta,
Estoy utilizando el código de :( https://github.com/playfultechnology/audio-guestbook.git ),basado en Teensy 4.0 y tengo unos cuanto problemas.
Entre otros el de no poder establecer una conexión estable con el puerto , no soy capaz de que inicialmente salga el mensaje de bienvenida...

¿Hay alguna versión mas depurada de este código( Audio Guestbook) con el que pueda avanzar e ir obteniendo resultados más satisfactorios en mi proyecto Guestbook?

Gracias por vuestra ayuda
 

Attachments

  • audio-guestbook-30.ino
    18 KB · Views: 5
Este es el mensaje de bienvenida que quiero incluir inicialmente a modo de prueba ( Greeting.wav) grabado en la frecuencia de 44.100 khz y 16 -bit y con extensión wav
 
Last edited:
This is the message, it has to be renamed to wav
According to GoldWave it's a 24-bit file, and thus not compatible:
1714563598843.png
 
Back
Top