Layer: L7 Application ยท Build flags: PC_ENABLE_NTP
What this example teaches
An ESP32 boots with no idea what time it is. pc_ntp_begin(tz) starts the ESP-IDF SNTP client (the first sync lands a few seconds later), and pc_ntp_http_date() formats the current time as an RFC 7231 date string - the same format HTTP Date/Last-Modified headers use. GET /time returns it, or 503 until the first sync completes.
Start the client, then format on demand.
bool pc_ntp_begin(const char *tz, const char *server1, const char *server2)
Start the SNTP client.
char date[40];
server.send(slot_id, 503, "text/plain", "Time not synced yet");
return;
}
server.send(slot_id, 200, "text/plain", date);
size_t pc_ntp_http_date(char *out, size_t out_cap)
Format the current time as an RFC 7231 IMF-fixdate (HTTP Date).
pc_ntp_http_date() returns 0 until the clock is set, so the handler can distinguish "no time yet" from a real value and answer 503 in the meantime. The TZ argument is a POSIX TZ string ("UTC0", "EST5EDT", "CET-1CEST", ...) so the formatted time can be local.
Build and run
pio ci --board=esp32dev --project-option="framework=arduino" \
--project-option="build_flags=-DPC_ENABLE_NTP=1" \
--lib="." examples/L7-Application/SNTP/SNTP.ino
curl http://<ip>/time # 503 for the first few seconds, then an RFC 7231 date
Annotated source
The complete sketch (SNTP.ino), reproduced verbatim with added explanatory comments:
#define PC_ENABLE_NTP 1
#include "services/ntp_service.h"
static const char *SSID = "YOUR_SSID";
static const char *PASSWORD = "YOUR_PASSWORD";
void handle_time(uint8_t slot_id,
HttpReq *req)
{
(void)req;
char date[40];
{
server.
send(slot_id, 503,
"text/plain",
"Time not synced yet");
return;
}
server.
send(slot_id, 200,
"text/plain", date);
}
void setup()
{
Serial.begin(115200);
Serial.print("Connecting to WiFi");
{
delay(250);
Serial.print('.');
}
Serial.printf("IP: %u.%u.%u.%u\n", (unsigned)(ip & 0xFF), (unsigned)((ip >> 8) & 0xFF),
(unsigned)((ip >> 16) & 0xFF), (unsigned)((ip >> 24) & 0xFF));
}
void loop()
{
}
Single-port HTTP server with deterministic, zero-allocation execution.
void send(uint8_t slot_id, int code, const char *content_type, const char *payload)
Send an HTTP response with a body and close the connection.
int32_t begin(const WebServerConfig *cfg=nullptr)
Initialize all connection slots and open all registered listeners.
void on(const char *path, HttpMethod method, Handler callback)
Register a route handler.
void handle()
Drive the server - call every Arduino loop() iteration.
bool init_wifi_physical(const char *, const char *)
Connect to a WiFi access point.
uint32_t pc_net_egress_ip(void)
IPv4 (network byte order) of the current egress interface, or 0 if none.
bool wifi_ready()
True if the WiFi station link is up (associated + an IP is assigned).
Layer 1 (Physical) - link bring-up and live egress-interface reporting.
Layer 7 (Application) - public HTTP routing API.
@ HTTP_GET
Safe, idempotent read.
Fully-parsed HTTP/1.1 request.