From 537b3951cf785aa16633b4df2f41684157dfb4b4 Mon Sep 17 00:00:00 2001 From: Rick Watson Date: Mon, 3 Jun 2019 21:58:07 +0100 Subject: [PATCH] more work on readme --- README.md | 15 ++++++++++++++- data/config/ntpSettings.json | 2 +- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index de8cdbd..45e7d7b 100644 --- a/README.md +++ b/README.md @@ -148,12 +148,25 @@ File | Description [securitySettings.json](data/config/securitySettings.json) | Security settings and user credentials [wifiSettings.json](data/config/wifiSettings.json) | WiFi connection settings +### Access point settings + The default settings configure the device to bring up an access point on start up which can be used to configure the device: * SSID: ESP8266-React * Password: esp-react -### Building for different devices +### Security settings and user credentials + +The security settings and user credentials provide the following users by default: + +Username | Password +-------- | -------- +admin | admin +guest | guest + +It is recomended that you change the JWT secret and user credentials from their defaults protect your device. You can do this in the user interface, or by modifying [securitySettings.json](data/config/securitySettings.json) before uploading the file system image. + +## Building for different devices This project supports ESP8266 and ESP32 platforms. To support OTA programming, enough free space to upload the new sketch and file system image will be required. It is recommended that a board with at least 2mb of flash is used. diff --git a/data/config/ntpSettings.json b/data/config/ntpSettings.json index 5767035..bd0147b 100644 --- a/data/config/ntpSettings.json +++ b/data/config/ntpSettings.json @@ -1,4 +1,4 @@ { "server":"pool.ntp.org", - "interval":60 + "interval":3600 }