add week 9

This commit is contained in:
2023-06-13 18:48:18 +09:00
parent ea1dce3f3b
commit a06880b413
50 changed files with 388 additions and 2 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();
}