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