@ -105,6 +105,7 @@ Full documentation is available on https://Hieromon.github.io/AutoConnect, some
- Supports Arduino core for ESP32 1.0.3.
- Supports AutoConnectUpdate for the OTA update.
- Supports Preferences for saving credentials with ESP32 core 1.0.3 and later. **In ESP32, the credentials stored past in EEPROM will lose**.
- Supports AutoConnectAux::isValid function.
### [0.9.12] Aug. 18, 2019
- Fixed missing captive portal notifications on the newer mobile OS client. As a result of this fix, the SoftAP default IP address and gateway have been changed to **172.217.28.1**. (issue #85)
@ -100,6 +100,18 @@ Returns whether embedded in the menu or not. The isMenu is a function that compl
<dd><spanclass="apidef">false</span><spanclass="apidesc">This custom Web page is not currently a menu item.</span></dd>
</dl>
### <iclass="fa fa-caret-right"></i> isValid
```cpp
bool isValid(void)
```
Performs [validation](apielements.md#isvalid) of all [AutoConnectInput](apielements.md#autoconnectinput) elements owned by AutoConnectAux and returns the result. The isValid function will return the true even if the AutoConnectAux does not own AutoConnectInputs.
<dlclass="apidl">
<dt>**Return value**</dt>
<dd><spanclass="apidef">true</span><spanclass="apidesc">Validation is successful. A value of all AutoConnectInputs match with each pattern.</span></dd>
<dd><spanclass="apidef">false</span><spanclass="apidesc">Some elements failed validation.</span></dd>
- Fixed missing captive portal notifications on the newer mobile OS client. As a result of this fix, the SoftAP default IP address and gateway have been changed to **172.217.28.1**.