void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Mohammed Tauhid ");
delay(2000);
Serial. println("TPGIT");
delay (2000);
Serial. println("ECE");
delay(200);
pinMode(17, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(17, HIGH);
delay(2000);
digitalWrite(17, LOW);
delay(2000);
// this speeds up the simulation
}