18 lines
478 B
C
18 lines
478 B
C
//
|
|
// 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
|
|
// problem. Create an include/private_ssid_config.h file with the following two
|
|
// definitions uncommented:
|
|
//
|
|
// #define WIFI_SSID "mywifissid"
|
|
// #define WIFI_PASS "my secret password"
|
|
//
|
|
|
|
#ifndef __SSID_CONFIG_H__
|
|
#define __SSID_CONFIG_H__
|
|
|
|
#include "private_ssid_config.h"
|
|
|
|
#endif // __SSID_CONFIG_H__
|