Volume not adjustable - Max98257 / ESP32 #814
-
I'm currently running the following code, but can't seem to get the volume adjusted. No matter the value the speaker is playing 100%. What am I missing? :) `/**
// install https://github.com/pschatzmann/arduino-libhelix.git #include "AudioTools.h" URLStream url("abcd","1234"); void setup(){ // setup i2s // set initial volume // setup I2S based on sampling rate provided by decoder // mp3 radio } void loop(){ |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You send the output directly to i2s instead of to volume, so volume is not used anywhere! |
Beta Was this translation helpful? Give feedback.
You send the output directly to i2s instead of to volume, so volume is not used anywhere!