
#pragma once

/*
  Type of connection?
  "Access Point", "Access Point with password" or "Station"

  "Access Point (AP) mode"
  This is not connected to your local network, you connect to the Network of the ESP8266.
  This means you can connect to it with your Moble Phone anywhare you are.
  You change the WiFi your Phone is connected to, to the ESP8266 WiFi.
  Then open browser to the IP of the ESP8266 control page. (we will be setting it to 192.168.50.11)
  Have your serial monitor connected when you re-set the module to confirm correct IP Address.

  "Access Point with Pasword (AP) mode"
  This is same as above, but you need a password to connect to the WiFi. (it currently is: 12345678)

  "Station (STA) mode"
  In STA mode, the ESP8266 connects to an existing WiFi network created by your wireless router.
  You will need to set the access credentials for your local network.
  This is the recommended setting as it will enable you to use a web browser any device currently connected to your network.

  Un-Comment which way you want to connect. (1 choice only)
*/

#define ACCESS_POINT_STA
// #define ACCESS_POINT
// #define ACCESS_POINT_PW

/*
	These are made up for the websocket.
*/
#define ESP8266_SSID_AP "Low Resistance Meter"
#define ESP8266_PASSWORD_AP "meter123"

/*
  The name of your local network.
  The Password.

	These are required if using the "Station (STA) mode".
*/
#define LOCAL_SSID_STA "Your local network name"	/*	Your local network name.		*/
#define LOCAL_PASSWORD_STA "Your local network password"	/*	Your local network password.	*/

#define ENABLE_SERIAL
#define DEBUG
