12 lines
274 B
C
12 lines
274 B
C
|
// SSID and password of the WiFi network to which we broadcast the door lock's
|
||
|
// status.
|
||
|
char SSID[] = "";
|
||
|
char PASSWORD[] = "";
|
||
|
|
||
|
|
||
|
// Port on which to listen for status requests
|
||
|
unsigned int PORT = 12345;
|
||
|
|
||
|
// Pin to which the reed switch is connected
|
||
|
uint8_t REED_PIN = 0;
|