Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MicroDexed/commit/09e67e9c9218e6120c262617be11d3683165132e
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
4 additions and
3 deletions
MicroDexed.ino
@ -9,6 +9,7 @@
# include <MIDI.h>
# include "dexed.h"
# define AUDIO_MEM 16
# define AUDIO_BUFFER_SIZE 128
# define SAMPLEAUDIO_BUFFER_SIZE 44100
# define MIDI_QUEUE_LOCK_TIMEOUT_MS 5
@ -31,13 +32,13 @@ typedef struct
uint8_t data2 ;
} midi_queue_t ;
// GUItool: begin automatically geneAUDIO_BUFFER_SIZE d code
// GUItool: begin automatically generate d code
AudioPlayQueue queue1 ; //xy=266,484
AudioOutputI2S i2s1 ; //xy=739,486
AudioConnection patchCord2 ( queue1 , 0 , i2s1 , 0 ) ;
AudioConnection patchCord3 ( queue1 , 0 , i2s1 , 1 ) ;
AudioControlSGTL5000 sgtl5000_1 ; //xy=384,610
// GUItool: end automatically geneAUDIO_BUFFER_SIZE d code
// GUItool: end automatically generate d code
MIDI_CREATE_INSTANCE ( HardwareSerial , Serial1 , MIDI ) ;
Dexed * dexed = new Dexed ( SAMPLEAUDIO_BUFFER_SIZE ) ;
@ -57,7 +58,7 @@ void setup()
// Audio connections require memory to work. For more
// detailed information, see the MemoryAndCpuUsage example
AudioMemory ( 16 ) ;
AudioMemory ( AUDIO_MEM ) ;
sgtl5000_1 . enable ( ) ;
sgtl5000_1 . volume ( 0.4 ) ;