25 lines
1.2 KiB
C
25 lines
1.2 KiB
C
/****************************************************************************************************************************
|
|
Credentials.h
|
|
Library for communicating with a MySQL or MariaDB Server
|
|
|
|
Based on and modified from Dr. Charles A. Bell's MySQL_Connector_Arduino Library https://github.com/ChuckBell/MySQL_Connector_Arduino
|
|
to support nRF52, SAMD21/SAMD51, SAM DUE, STM32F/L/H/G/WB/MP1, ESP8266, ESP32, etc. boards using W5x00, ENC28J60, LAM8742A Ethernet,
|
|
WiFiNINA, ESP-AT, built-in ESP8266/ESP32 WiFi.
|
|
|
|
The library provides simple and easy Client interface to MySQL or MariaDB Server.
|
|
|
|
Built by Khoi Hoang https://github.com/khoih-prog/MySQL_MariaDB_Generic
|
|
Licensed under MIT license
|
|
**********************************************************************************************************************************/
|
|
|
|
#ifndef Credentials_h
|
|
#define Credentials_h
|
|
|
|
char ssid[] = "cpsNUCwifi"; // your network SSID (name)
|
|
char pass[] = "ips999CPS"; // your network password
|
|
|
|
char user[] = "db_user"; // MySQL user login username
|
|
char password[] = "db_password"; // MySQL user login password
|
|
|
|
#endif //Credentials_h
|