/*
* LAB: MAct1C
* Name: ESP32 Serial Plotter
* Group/Name: [Name]
* [Short Description]
*/
int Sine_LUT[32] =
{128,152,176,198,218,234,245,253,255,253,245,234,218,198,176,152,128,103,79,57,37,21,10,2,0,2,10,21,37,57,79,103};
int i = 0;
void setup()
{
Serial.begin(115200);
}
void loop()
{
Serial.println(Sine_LUT[i++]);
if(i == 32)
{
i = 0;
}
delay(10);
}