2015-07-28 21:56:47 +00:00
|
|
|
//
|
|
|
|
// Why this file?
|
|
|
|
//
|
|
|
|
// We all need to add our personal SSID/password to each ESP project but we
|
|
|
|
// do not want that information pushed to Github. This file solves that
|
2016-11-12 20:24:29 +00:00
|
|
|
// problem. Create an include/private_ssid_config.h file with the following two
|
|
|
|
// definitions uncommented:
|
2015-07-28 21:56:47 +00:00
|
|
|
//
|
2016-11-12 20:24:29 +00:00
|
|
|
// #define WIFI_SSID "mywifissid"
|
|
|
|
// #define WIFI_PASS "my secret password"
|
2015-07-28 21:56:47 +00:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef __SSID_CONFIG_H__
|
|
|
|
#define __SSID_CONFIG_H__
|
|
|
|
|
2016-11-12 20:24:29 +00:00
|
|
|
#include "private_ssid_config.h"
|
2015-07-28 21:56:47 +00:00
|
|
|
|
|
|
|
#endif // __SSID_CONFIG_H__
|