Skip to content

Commit

Permalink
https client now defined in SECRET_APP_PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
gojimmypi committed Jun 16, 2020
1 parent 01d40b1 commit f5174ac
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions GlobalDefine.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ static const char* HEX_CHARS = "0123456789ABCDEF";
//#define ARDUINO_ARCH_ESP8266
//#endif

//#ifndef ARDUINO_ARCH_ESP32
//#define ARDUINO_ARCH_ESP32
//#endif

#ifndef ARDUINO_SAMD_MKRWIFI1010
#define ARDUINO_SAMD_MKRWIFI1010
#ifndef ARDUINO_ARCH_ESP32
#define ARDUINO_ARCH_ESP32
#endif

//#ifndef ARDUINO_SAMD_MKRWIFI1010
//#define ARDUINO_SAMD_MKRWIFI1010
//#endif


//*************************************************************************************************************************************************************************************************
// private secret settings
Expand All @@ -66,8 +66,9 @@ static const char* SECRET_WIFI_USERNAME = "my-WiFi-USERNAME" // for enterprise l
static const char* SECRET_EAP_ID = "my-Enterprise-ID" // EAP_ID (typically the same as EAP_USERNAME, e.g. domain\\my-Enterpeise-UserName)
static const char* SECRET_EAP_USERNAME = "domain\\my-Enterpeise-UserName"; // Username for authentification (typically the same as EAP_ID); consider trying also [email protected]
static const char* SECRET_EAP_PASSWORD = "my-Enterpeise-Password"; // Password for authentication
static const char* SECRET_APP_HOST = "contoso.com"; // The primary host for this application
static const int APP_HTTPS_PORT = 443; // the TLS/SSL port (typically 443)
static const char* SECRET_APP_HOST = "contoso.com"; // The primary host for this application
static const char* SECRET_APP_PATH = "/RFID/default.aspx"; // The application path and page name to send results
static const char CERTIFICATE_DETAILS_THUMBPRINT[] PROGMEM = "5F 3F 7A C2 56 9F 50 A4 66 76 47 C6 A1 8C A0 07 AA ED BB 8E"; // SHA1 fingerprint copy this from APP_HOST certificate thumbprint to use for fingerprint setting
#endif
//**************************************************************************************************************
Expand Down

0 comments on commit f5174ac

Please sign in to comment.