1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-26 07:02:15 +03:00

- Move all serialization code to separate Serializer namespace and files.

- Generalize and improve JSON processing code.

- Prevent mesh passwords from containing " characters to avoid messing up the JSON processing.

- Improve documentation.
This commit is contained in:
Anders
2020-05-10 16:42:57 +02:00
parent e64125a53c
commit 2ec2679d6e
14 changed files with 464 additions and 232 deletions

View File

@ -194,7 +194,7 @@ public:
* Will also change the setting for the active AP (via an AP restart)
* if this MeshBackendBase instance is the current AP controller.
*
* @param newMeshPassword The password to use.
* @param newMeshPassword The password to use. Must be between 8 and 64 characters long. " is an illegal character because of JSON parsing requirements.
*/
void setMeshPassword(const String &newMeshPassword);
String getMeshPassword() const;