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 <ESP8266WebServer.h>
#include <AutoConnect.h>
#include <AutoConnectCredentail.h>
#include <AutoConnectCredential.h>
#include <PageBuilder.h>
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.
A class description of AutoConnectCredentail is follows.
A class description of AutoConnectCredential is follows.
### Constructor

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

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

Loading…
Cancel
Save