Ottenere l'ora reale con NTP/RTC
Associ dati a date e orari accurati.
Ottenere l'ora reale con NTP/RTC è una lezione Arduino & IoT Academy gratuita su CoddyKit. Questa è la lezione 1 di 4. Puoi leggere la lezione completa qui gratuitamente — poi esercitati direttamente nel browser con un editor di codice integrato e un tutor IA disponibile 24/7. Fa parte del percorso di apprendimento Arduino & IoT Academy, e i tuoi progressi si sincronizzano tra il web e l'app CoddyKit. Il corso Arduino & IoT Academy include 4 lezioni in totale.
Parti di questa lezione non sono ancora state tradotte e vengono mostrate in inglese.
Why Time Matters
A reading like "24.3 C" is half a story. To make sense of logged data, every sample needs a timestamp telling you exactly when it happened. ⏰
Arduino Has No Clock
Your Arduino forgets the date the moment power drops. It only counts milliseconds since boot, so it has no idea what real-world wall-clock time it is.
Two Ways to Get Time
You can fetch the time from the internet with NTP, or keep it locally with a battery-backed RTC chip. Each fits a different situation.
What NTP Does
NTP (Network Time Protocol) asks a time server online for the current moment. It is accurate and free, but it needs an active WiFi connection to work.
Asking an NTP Server
On an ESP32 one line of setup points your board at a public time server and your timezone offset. Then the board syncs automatically.
configTime(0, 0, "pool.ntp.org");Reading the Synced Time
Once synced, you pull the current time into a struct and read its fields. This gives you year, month, day, hour, and minute to label data.
struct tm now;
getLocalTime(&now);What an RTC Does
An RTC module like the DS3231 keeps ticking on a tiny coin battery, even with the Arduino fully off. No network needed at all.
Wiring an RTC
Most RTC modules talk over I2C, so you connect just four wires: power, ground, SDA, and SCL. That keeps your build wonderfully simple.
Reading from an RTC
With the RTClib library you grab the current moment as a DateTime object, then read its fields just like the NTP version.
DateTime now = rtc.now();
int h = now.hour();NTP or RTC?
Pick NTP when your device is always online and you want zero extra parts. Pick an RTC for offline or battery nodes that still need the right time.
Best of Both
Many strong designs use both: an RTC keeps time offline, and NTP gently corrects its small drift whenever WiFi is available. 🌐
Quick Check
Which time source still works with no internet connection?
Recap
Arduino has no real clock, so add time with NTP online or an RTC offline. Now every reading you log can carry an accurate timestamp. ✅
Domande Frequenti
La lezione «Ottenere l'ora reale con NTP/RTC» è gratuita?
Sì — il testo completo di «Ottenere l'ora reale con NTP/RTC» è gratuito qui sul web. Per esercitarvi in modo interattivo (un editor di codice integrato e un tutor IA 24/7) e sbloccare il resto del corso Arduino & IoT Academy, passa a CoddyKit PRO. Il corso Arduino & IoT Academy include 4 lezioni in totale.
Cosa imparerò in «Ottenere l'ora reale con NTP/RTC»?
Associ dati a date e orari accurati. Eserciti Arduino & IoT Academy con codice pratico che esegui direttamente nel browser, e un tutor IA 24/7 risponde alle tue domande mentre lavori sulla lezione.
Ho bisogno di esperienza per iniziare Arduino & IoT Academy?
Non è richiesta alcuna esperienza precedente. Arduino & IoT Academy su CoddyKit è strutturato per principianti e studenti avanzati, quindi puoi iniziare da qui o dall'inizio e procedere al tuo ritmo. Questa è la lezione 1 di 4.
Quanto tempo richiede la lezione «Ottenere l'ora reale con NTP/RTC»?
La maggior parte delle lezioni CoddyKit richiede circa 5–10 minuti. Ogni lezione è breve e interattiva, quindi fai progressi costanti e riprendi esattamente da dove hai lasciato su web e app.
Posso scrivere ed eseguire codice in questa lezione Arduino & IoT Academy?
Sì. Ogni lezione Arduino & IoT Academy include un editor di codice integrato, quindi scrivi ed esegui codice reale direttamente nel tuo browser e ricevi feedback istantaneo dall'IA — nessuna configurazione locale necessaria.
Tutte le lezioni di questo corso
- Ottenere l'ora reale con NTP/RTC
- Scrivere CSV su una scheda SD
- Memorizzare e raggruppare i caricamenti
- Visualizzare i dati registrati