doorstatus/source/arduino/config.h

12 lines
274 B
C
Raw Normal View History

// 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;