]> git.scottworley.com Git - tattlekey/blob - client/config.h
97e2f8cfb3be723b1a86808dc26f553f9d83e9d7
[tattlekey] / client / config.h
1 #ifndef CONFIG_H
2 #define CONFIG_H
3
4 #include "lwip/arch.h"
5
6 /* Wi-Fi credentials */
7 extern char wifi_ssid[];
8 extern char wifi_pass[];
9
10 /* Network address of the server to contact */
11 extern char tattle_server_ip_address[];
12 extern u16_t tattle_port;
13
14 /* For distinguishing reports from multiple tattlekey devices. */
15 extern u16_t this_tattler_identity;
16
17 #endif