Files
RTC_BL_PHONE/docs/fiche_AudioManager.md
Clément SAILLANT b89cda78c2 Add telephony and web server functionality
- Implement TelephoneSFPManager to manage telephony service interactions.
- Create TelephonyService class to handle telephony states and actions.
- Develop WebServerManager for handling HTTP requests and managing contacts.
- Add HTML, CSS, and JavaScript files for the web UI to interact with the telephony system.
- Introduce WifiManager for managing WiFi connections.
- Implement unit tests for telephony features and state transitions.
- Ensure proper input validation and error handling in web server routes.
2026-02-18 03:37:02 +01:00

455 B
Raw Permalink Blame History

Fiche technique AudioManager

Interface

  • Méthodes principales : init(), play(), stop(), setVolume(), getStatus()
  • Gestion des flux audio (lecture, enregistrement)

Flux de données

  • Entrée : fichiers audio, flux PCM
  • Sortie : DAC, I2S, logs

Scénarios dutilisation

  • Lecture de fichier audio
  • Contrôle du volume
  • Gestion des erreurs

Exemple dintégration

AudioManager audio;
audio.init();
audio.play("test.wav");