We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4bdf6c commit b845689Copy full SHA for b845689
esp32.ino
@@ -27,23 +27,20 @@ struct tm getLocalTime() {
27
28
if (!getLocalTime(&timeinfo)) {
29
Serial.println("Time info could not be retrieved.");
30
- // Geçersiz zaman döndürmek için tüm alanları sıfırla
31
memset(&timeinfo, 0, sizeof(struct tm));
32
}
33
34
return timeinfo;
35
36
37
void setup() {
38
- pinMode(15, INPUT); // Arduino'dan gelen sinyal pini
+ pinMode(15, INPUT);
39
attachInterrupt(digitalPinToInterrupt(15), setDataReady, RISING);
40
41
Serial.begin(115200);
42
43
delay(10);
44
45
- // We start by connecting to a WiFi network
46
-
47
Serial.println();
48
49
Serial.print("Connecting to ");
0 commit comments