I'm building a light theremin in Arduino. The only problem is that I have trouble using the serial monitor. Could you guys please help me add it into my code successfully. It works in real life but I also built here in tinkercad.
Here is the code for it
int sensorValue;
int sensorLow = 1023;
int sensorHigh = 0;
const int ledPin = 13;
void setup() {
pinMode(ledPin, OUTPUT);
digitalWrite(ledPin, HIGH);
while (millis() < 1000) {
sensorValue = analogRead(A0);
if (sensorValue > sensorHigh) {
sensorHigh = sensorValue;
}
if (sensorValue < sensorLow) {
sensorLow = sensorValue;
}
}
digitalWrite(ledPin, LOW);
}
void loop() {
sensorValue = analogRead(A0);
int pitch =
map(sensorValue,sensorLow,sensorHigh, 50, 4000);
analogWrite (ledPin, map(sensorValue, 50, 255, 0, 100));
tone(8,pitch,20);
delay(10);
}