"Reset" not declared in this scope

So i have this project for school where i got this code that i need to complete and add my own bits and pieces. It should be done however i keep getting the following error message and i cant find the the problem: "Reset" was not declared in this scope.

It should, afaik, have something to do with a missing { or } ? The relevant part of the code is as follows:

void setup() {;
Serial.begin(9600); //
pinMode(startknopPin, INPUT);
pinMode(H1Pin, OUTPUT);
pinMode(M1Pin, OUTPUT);
pinMode(V1Pin, OUTPUT);
pinMode(V2Pin, OUTPUT);
pinMode(V41Pin, OUTPUT);
while (Serial.available() > 0) {
char t = Serial.read();
}

Reset()
;}

Code_bierbrouwen_Hanno.ino (8.39 KB)

} // EINDE VAN HET HOOFDPROGRAMMA
↑

This closing bracket does not seem to have a matching opening bracket ("{").

Thanks alot!! That was the problem :slight_smile:

No problem!