-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathparams.h
31 lines (22 loc) · 929 Bytes
/
params.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// WiFi networks (SSID (network name) and password)
const int wifi_count = 1;
const char *wifi_networks[1] = {"TODO"};
const char *wifi_passwords[1] = {"TODO"};
// When to take up to check the weather forecast. This is an
// array of the minutes within an hour when the display should
// reload and update. For example, {0, 15, 30, 45} would update
// every 15 minutes starting at the top of the hour. {0, 30}
// would update at hh:00 and hh:30. These need to be in ascending
// order.
#define UPDATE_TIMES 2
uint8_t update_times[UPDATE_TIMES] = {0, 30};
// Pirate Weather API URL for a forecast. Here's where
// you put your API key, the lat/long you want weather
// for.
const char *api_key = "TODO";
const char *lat = "TODO";
const char *lon = "TODO";
// The title to show at the top of the display
const char *title = "TODO";
// Units for display, possible values: ca, uk, us, si.
const char *units = "si";