Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/commit/46a942428d792e40f1d95e8609bb31ccbb7de8a3?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
12 additions and
10 deletions
MicroDexed.ino
control_sgtl5000plus.cpp
@ -301,7 +301,6 @@ void create_audio_drum_chain(uint8_t instance_id)
}
# endif
StaticJsonDocument < JSON_BUFFER_SIZE > data_json ;
uint8_t sd_card = 0 ;
Sd2Card card ;
SdVolume volume ;
@ -115,24 +115,27 @@ void AudioControlSGTL5000Plus::setEQFc(uint8_t band, float frq)
}
}
// Calculate Q: http://www.sengpielaudio.com/calculator-bandwidth.htm
/* void AudioControlSGTL5000Plus::setEQQ(uint8_t band, float q)
{
void AudioControlSGTL5000Plus : : setEQQ ( uint8_t band , float q )
{
if ( Q )
{
band = constrain ( band , 1 , num_bands ) ;
Q [ band - 1 ] = q ;
}
} */
}
void setEQBandwidth ( uint8_t band , float bw ) ;
{
/*
// Calculate Q: http://www.sengpielaudio.com/calculator-bandwidth.htm
void setEQBandwidth ( uint8_t band , float bw )
{
if ( Q & & Fc )
{
band = constrain ( band , 1 , num_bands ) ;
//Q[band - 1] = ;
band = constrain ( band , 1 , num_bands ) ;
//Q[band - 1] = ;
}
}
}
*/
void AudioControlSGTL5000Plus : : setEQGain ( uint8_t band , float gain )
{
if ( peakGainDB )