Hello - and thanks in advance for any help - i am very rusty with the C programming...
i can't see what is wrong in my code, the error is pointing at void loop():
int LFOPin = 3;
int LFO = 0 ;
void setup() {
// put your setup code here, to run once:
{
Serial.begin(9600);
pinMode(LFOPin, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
if (Serial.available()>0
{
LFO = Serial.read();
analogWrite(LFOPin, LFO)}
delay(100)
}