fixed broken page resources

This commit is contained in:
2023-06-13 19:09:19 +09:00
parent a06880b413
commit f69c693257
8 changed files with 26 additions and 26 deletions

View File

@@ -0,0 +1,22 @@
#include <MozziGuts.h>
#include <Oscil.h>
#include <tables/sin2048_int8.h>
Oscil <SIN2048_NUM_CELLS, AUDIO_RATE> aSin(SIN2048_DATA);
void setup(){
startMozzi();
aSin.setFreq(440);
}
void updateControl(){
}
int updateAudio(){
return aSin.next();
}
void loop(){
audioHook();
}