X-Git-Url: http://git.scottworley.com/tattlekey/blobdiff_plain/fbc57595f1dfa046d8a8f8a25c3ea7f810579bb9..1d699cc3048d7e1dfed4f13e455cd2ede3d52101:/client/config.h diff --git a/client/config.h b/client/config.h index 5c8af1e..97e2f8c 100644 --- a/client/config.h +++ b/client/config.h @@ -1,7 +1,17 @@ #ifndef CONFIG_H #define CONFIG_H +#include "lwip/arch.h" + +/* Wi-Fi credentials */ extern char wifi_ssid[]; extern char wifi_pass[]; +/* Network address of the server to contact */ +extern char tattle_server_ip_address[]; +extern u16_t tattle_port; + +/* For distinguishing reports from multiple tattlekey devices. */ +extern u16_t this_tattler_identity; + #endif