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:
@ -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;
|
||||
|
Reference in New Issue
Block a user