22 lines
801 B
C
22 lines
801 B
C
/****************************************************************************************************************************
|
|
defines.h
|
|
AsyncMQTT_ESP32 is a library for ESP32 boards using WiFi or LwIP W5500, LAN8720 or ENC28J60
|
|
|
|
Based on and modified from :
|
|
|
|
1) async-mqtt-client (https://github.com/marvinroger/async-mqtt-client)
|
|
2) async-mqtt-client (https://github.com/khoih-prog/AsyncMQTT_Generic)
|
|
|
|
Built by Khoi Hoang https://github.com/khoih-prog/AsyncMQTT_ESP32
|
|
***************************************************************************************************************************************/
|
|
|
|
#ifndef defines_h
|
|
#define defines_h
|
|
|
|
#define _ASYNC_MQTT_LOGLEVEL_ 1
|
|
|
|
#define WIFI_SSID "yourSSID"
|
|
#define WIFI_PASSWORD "yourpass"
|
|
|
|
#endif //defines_h
|