No description
Find a file
2025-01-27 23:59:42 +01:00
audios add support for multithread buffer sending 2025-01-13 16:24:17 +01:00
src Improve file pick label 2025-01-27 13:39:51 +01:00
.gitignore Heal egui 2025-01-06 13:28:55 +01:00
Cargo.lock Add support for native file picker 2025-01-13 15:11:21 +01:00
Cargo.toml Add support for native file picker 2025-01-13 15:11:21 +01:00
README.md Add design pattern 2025-01-27 23:59:42 +01:00

syncaud

Requirements

Design Pattern

In our code we adhered to the Strategy Design Pattern as described here. For example, the ClientHandler trait acts as the strategy interface and the NetworkListener implements the strategy via the trait. This means that in the future, this strategy could be replaced to allow for a different communication medium, e.g. Serial.

Featurelist

  • The user interface should be interactive and usable by any person.
  • Sounds are played synchronously across multiple devices.
  • Any mp3 file can be uploaded by the user to play.

Planned structure

syncaud(1)

Actual structure

Syncaud(2)