Fixed a header file name

pull/8/head
Hieromon Ikasamo 7 years ago
parent cfd164f234
commit b24220edb2
  1. 2
      examples/Credential/Credential.ino
  2. 2
      mkdocs/faq.md
  3. 4
      src/AutoConnectCredential.cpp
  4. 6
      src/AutoConnectCredential.h

@ -15,7 +15,7 @@
#include <ESP8266WiFi.h> #include <ESP8266WiFi.h>
#include <ESP8266WebServer.h> #include <ESP8266WebServer.h>
#include <AutoConnect.h> #include <AutoConnect.h>
#include <AutoConnectCredentail.h> #include <AutoConnectCredential.h>
#include <PageBuilder.h> #include <PageBuilder.h>
ESP8266WebServer Server; ESP8266WebServer Server;

@ -66,7 +66,7 @@ The correct boot mode for starting the sketch is **(3, x)**.
Make some sketches for erasing the EEPROM area, or some erasing utility is needed. You can prepare the sketch to erase the saved credential with *AutoConnectCredential*. The *AutoConnectCrendential* class provides the access method to the saved credential in EEPROM and library source file is including it. Make some sketches for erasing the EEPROM area, or some erasing utility is needed. You can prepare the sketch to erase the saved credential with *AutoConnectCredential*. The *AutoConnectCrendential* class provides the access method to the saved credential in EEPROM and library source file is including it.
A class description of AutoConnectCredentail is follows. A class description of AutoConnectCredential is follows.
### Constructor ### Constructor

@ -1,6 +1,6 @@
/** /**
* AutoConnectCredentail class implementation. * AutoConnectCredential class implementation.
* @file AutoConnectCredentail.cpp * @file AutoConnectCredential.cpp
* @author hieromon@gmail.com * @author hieromon@gmail.com
* @version 1.0.0 * @version 1.0.0
* @date 2018-02-17 * @date 2018-02-17

@ -7,8 +7,8 @@
* @copyright MIT license. * @copyright MIT license.
*/ */
#ifndef _AUTOCONNECTCREDENTAIL_H_ #ifndef _AUTOCONNECTCREDENTIAL_H_
#define _AUTOCONNECTCREDENTAIL_H_ #define _AUTOCONNECTCREDENTIAL_H_
#if defined(ARDUINO) && ARDUINO >= 100 #if defined(ARDUINO) && ARDUINO >= 100
#include "arduino.h" #include "arduino.h"
@ -50,4 +50,4 @@ class AutoConnectCredential {
uint16_t _offset; /**< The offset for the saved area of credentials in EEPROM. */ uint16_t _offset; /**< The offset for the saved area of credentials in EEPROM. */
}; };
#endif // _AUTOCONNECTCREDENTAIL_H_ #endif // _AUTOCONNECTCREDENTIAL_H_

Loading…
Cancel
Save