Skip to content

Commit b845689

Browse files
authored
Update esp32.ino
Remove comments
1 parent e4bdf6c commit b845689

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

esp32.ino

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,23 +27,20 @@ struct tm getLocalTime() {
2727

2828
if (!getLocalTime(&timeinfo)) {
2929
Serial.println("Time info could not be retrieved.");
30-
// Geçersiz zaman döndürmek için tüm alanları sıfırla
3130
memset(&timeinfo, 0, sizeof(struct tm));
3231
}
3332

3433
return timeinfo;
3534
}
3635

3736
void setup() {
38-
pinMode(15, INPUT); // Arduino'dan gelen sinyal pini
37+
pinMode(15, INPUT);
3938
attachInterrupt(digitalPinToInterrupt(15), setDataReady, RISING);
4039

4140
Serial.begin(115200);
4241

4342
delay(10);
4443

45-
// We start by connecting to a WiFi network
46-
4744
Serial.println();
4845
Serial.println();
4946
Serial.print("Connecting to ");

0 commit comments

Comments
 (0)