* add NTP sync interval #1019
* adjusted range of contrast / luminance setting #1041
* use only ISO time format in Web-UI #913
This commit is contained in:
lumapu 2023-07-23 23:08:21 +02:00
parent c9d705baa4
commit 984e344f05
10 changed files with 31 additions and 13 deletions

View file

@ -390,8 +390,9 @@ class RestApi {
}
void getNtp(JsonObject obj) {
obj[F("addr")] = String(mConfig->ntp.addr);
obj[F("port")] = String(mConfig->ntp.port);
obj[F("addr")] = String(mConfig->ntp.addr);
obj[F("port")] = String(mConfig->ntp.port);
obj[F("interval")] = String(mConfig->ntp.interval);
}
void getSun(JsonObject obj) {