This repository has been archived on 2022-11-05. You can view files and clone it, but cannot push or open issues or pull requests.
doorstatus/source/arduino/config.h
2020-11-18 22:45:14 +01:00

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;