#include <Arduino.h>
#include "mix.h"
MIX x;
void setup() {
// put your setup code here, to run once:
int a =100;
Serial.begin(115200);
Serial.printf("Hello, ESP32! %d\n",a);
x.show();
x.setGain(3,2);
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}