Adjust PicoSynth volume when setting it in the Galactic Unicorn API

pull/603/head
Pete Favelle 2022-12-08 17:07:07 +00:00
rodzic b1e8ed0864
commit 875119da70
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

@ -517,6 +517,7 @@ namespace pimoroni {
value = value < 0.0f ? 0.0f : value;
value = value > 1.0f ? 1.0f : value;
this->volume = floor(value * 255.0f);
this->synth.volume = this->volume * 255.0f;
}
float GalacticUnicorn::get_volume() {