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