8000 Added configuration folder for example script · m4k3r-org/esp32_https_server@ac4320c · GitHub
[go: up one dir, main page]

Skip to content

Commit ac4320c

Browse files
committed
Added configuration folder for example script
1 parent d67cf1e commit ac4320c

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ Release/
4949
.scala_dependencies
5050
.worksheet
5151

52-
*.example.h
52+
data/wifi/wifi.h
5353
data/cert/*.h

data/wifi/wifi.example.h

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/*
2+
* wifi.h
3+
*
4+
* Created on: Dec 15, 2017
5+
* Author: frank
6+
*/
7+
8+
#ifndef DATA_WIFI_WIFI_H_
9+
#define DATA_WIFI_WIFI_H_
10+
11+
#define WIFI_CONFIGURED 1
12+
13+
// Configure this file with your wifi credentials and copy it to wifi.h
14+
15+
#define WIFI_SSID "<your ssid goes here>"
16+
#define WIFI_PSK "<your pre-shared key goes here>"
17+
18+
#endif /* DATA_WIFI_WIFI_H_ */

0 commit comments

Comments
 (0)
0