]> git.scottworley.com Git - tattlekey/blame_incremental - client/config.c
client: Explain config settings
[tattlekey] / client / config.c
... / ...
CommitLineData
1#include "config.h"
2
3/* Wi-Fi credentials */
4char wifi_ssid[] = "THEWIFISSID";
5char wifi_pass[] = "THEWIFIPASSWORD";
6
7/* Network address of the server to contact */
8char tattle_server_ip_address[] = "192.168.10.10";
9u16_t tattle_port = 29803; // 'tk'
10
11/* For distinguishing reports from multiple tattlekey devices. */
12u16_t this_tattler_identity = 1;