mirror of
https://git.mirrors.martin98.com/https://github.com/luc-github/ESP3D.git
synced 2025-06-30 06:05:11 +08:00

Web commands are still working, only input from serial is disabled for ESP module not for printer,
142 lines
5.0 KiB
C++
142 lines
5.0 KiB
C++
/*
|
|
CONFIG.H - esp8266 configuration class
|
|
|
|
Copyright (c) 2014 Luc Lebosse. All rights reserved.
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this library; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
//comment to disable
|
|
//MDNS_FEATURE: this feature allow type the name defined
|
|
//in web browser by default: http:\\esp8266.local and connect
|
|
#define MDNS_FEATURE
|
|
|
|
//SSDD_FEATURE: this feature is a discovery protocol, supported on Windows out of the box
|
|
#define SSDP_FEATURE
|
|
|
|
//CAPTIVE_PORTAL_FEATURE: In SoftAP redirect all unknow call to main page
|
|
#define CAPTIVE_PORTAL_FEATURE
|
|
|
|
//AUTHENTICATION_FEATURE: protect pages by login password
|
|
#define AUTHENTICATION_FEATURE
|
|
|
|
//WEB_UPDATE_FEATURE: allow to flash fw using web UI
|
|
#define WEB_UPDATE_FEATURE
|
|
|
|
//SERIAL_COMMAND_FEATURE: allow to send command by serial
|
|
#define SERIAL_COMMAND_FEATURE
|
|
|
|
#ifndef CONFIG_h
|
|
#define CONFIG_h
|
|
|
|
#include <Arduino.h>
|
|
#include "wifi.h"
|
|
extern "C" {
|
|
#include "user_interface.h"
|
|
}
|
|
//version and sources location
|
|
#define FW_VERSION "0.5.1"
|
|
#define REPOSITORY "https://github.com/luc-github/ESP8266"
|
|
|
|
|
|
//pin used to reset setting
|
|
#define RESET_CONFIG_PIN 2
|
|
|
|
//flags
|
|
#define AP_MODE 1
|
|
#define CLIENT_MODE 2
|
|
#define DHCP_MODE 1
|
|
#define STATIC_IP_MODE 2
|
|
|
|
//position in EEPROM
|
|
//AP mode = 1; Station client mode = 2
|
|
#define EP_WIFI_MODE 0 //1 byte = flag
|
|
#define EP_SSID 1 //33 bytes 32+1 = string ; warning does not support multibyte char like chinese
|
|
#define EP_PASSWORD 34 //65 bytes 64 +1 = string ;warning does not support multibyte char like chinese
|
|
#define EP_IP_MODE 99 //1 byte = flag
|
|
#define EP_IP_VALUE 100 //4 bytes xxx.xxx.xxx.xxx
|
|
#define EP_MASK_VALUE 104 //4 bytes xxx.xxx.xxx.xxx
|
|
#define EP_GATEWAY_VALUE 108 //4 bytes xxx.xxx.xxx.xxx
|
|
#define EP_BAUD_RATE 112 //4 bytes = int
|
|
#define EP_PHY_MODE 116 //1 byte = flag
|
|
#define EP_SLEEP_MODE 117 //1 byte = flag
|
|
#define EP_CHANNEL 118 //1 byte = flag
|
|
#define EP_AUTH_TYPE 119 //1 byte = flag
|
|
#define EP_SSID_VISIBLE 120 //1 byte = flag
|
|
#define EP_WEB_PORT 121 //4 bytes = int
|
|
#define EP_DATA_PORT 125 //4 bytes = int
|
|
#define EP_REFRESH_PAGE_TIME 129 //1 bytes = flag
|
|
#define EP_HOSTNAME 130//33 bytes 32+1 = string ; warning does not support multibyte char like chinese
|
|
#define EP_XY_FEEDRATE 164//4 bytes = int
|
|
#define EP_Z_FEEDRATE 168//4 bytes = int
|
|
#define EP_E_FEEDRATE 172//4 bytes = int
|
|
#define EP_ADMIN_PWD 176//21 bytes 20+1 = string ; warning does not support multibyte char like chinese
|
|
|
|
|
|
|
|
//default values
|
|
#define DEFAULT_WIFI_MODE AP_MODE
|
|
const char DEFAULT_SSID [] PROGMEM = "ESP8266";
|
|
const char DEFAULT_PASSWORD [] PROGMEM = "12345678";
|
|
#define DEFAULT_IP_MODE STATIC_IP_MODE
|
|
const byte DEFAULT_IP_VALUE[] = {192, 168, 0, 1};
|
|
const byte DEFAULT_MASK_VALUE[] = {255, 255, 255, 0};
|
|
#define DEFAULT_GATEWAY_VALUE DEFAULT_IP_VALUE
|
|
const long DEFAULT_BAUD_RATE = 9600;
|
|
const char M117_[] PROGMEM = "M117 ";
|
|
#define DEFAULT_PHY_MODE PHY_MODE_11G
|
|
#define DEFAULT_SLEEP_MODE MODEM_SLEEP_T
|
|
#define DEFAULT_CHANNEL 11
|
|
#define DEFAULT_AUTH_TYPE AUTH_WPA_PSK
|
|
#define DEFAULT_SSID_VISIBLE 1
|
|
#define DEFAULT_MAX_CONNECTIONS 4
|
|
#define DEFAULT_BEACON_INTERVAL 100
|
|
const int DEFAULT_WEB_PORT = 80;
|
|
const int DEFAULT_DATA_PORT = 8888;
|
|
#define DEFAULT_REFRESH_PAGE_TIME 3
|
|
const int DEFAULT_XY_FEEDRATE=1000;
|
|
const int DEFAULT_Z_FEEDRATE =100;
|
|
const int DEFAULT_E_FEEDRATE=400;
|
|
const char DEFAULT_ADMIN [] PROGMEM = "admin";
|
|
|
|
//sizes
|
|
#define EEPROM_SIZE 256 //max is 512
|
|
#define MAX_SSID_LENGTH 32
|
|
#define MIN_SSID_LENGTH 1
|
|
#define MAX_PASSWORD_LENGTH 64
|
|
#define MIN_PASSWORD_LENGTH 8
|
|
#define MAX_ADMIN_PASSWORD_LENGTH 16
|
|
#define MIN_ADMIN_PASSWORD_LENGTH 1
|
|
#define IP_LENGTH 4
|
|
#define INTEGER_LENGTH 4
|
|
#define MAX_HOSTNAME_LENGTH 32
|
|
|
|
class CONFIG
|
|
{
|
|
public:
|
|
static bool read_string(int pos, char byte_buffer[], int size_max);
|
|
static bool read_string(int pos, String & sbuffer, int size_max);
|
|
static bool read_buffer(int pos, byte byte_buffer[], int size_buffer);
|
|
static bool read_byte(int pos, byte * value);
|
|
static bool write_string(int pos, const char * byte_buffer);
|
|
static bool write_string(int pos, const __FlashStringHelper *str);
|
|
static bool write_buffer(int pos, const byte * byte_buffer, int size_buffer);
|
|
static bool write_byte(int pos, const byte value);
|
|
static bool reset_config();
|
|
static void print_config();
|
|
};
|
|
|
|
#endif
|