-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevelopment.toml
55 lines (49 loc) · 1.75 KB
/
development.toml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[release]
release_info_url = "https://api.github.com/repos/mt-empty/pi-inky-weather-epd/releases/latest"
download_base_url = "https://github.com/mt-empty/pi-inky-weather-epd/releases/download"
auto_update = true
update_interval_days = 7
## Extremes
# Babinda, QLD: "rhzv2d" # wettest place in Australia
# Marble Bar, NSW: "qgph8w" # hottest place in Australia
# Tasmanian heights, TAS: "r283sf" # coldest place in Tasmania
## Major Cities
# Darwin: "qvv117"
# Sydney: "r3gx2f"
# Melbourne: "r1r0fs"
# Brisbane: "r7hgd6"
# Perth: "r28ekz"
# Adelaide: "r1f93c"
# Hobart: "r22u0d"
# Canberra: "r3dp32"
[api]
location = "r1r0fs" # uses GeoHash, must be 6 characters
# supported colours for 7.3 inky display
# [black, white, green, blue, red, yellow, orange]
[colours]
background_colour = "white"
text_colour = "black"
x_axis_colour = "black"
y_left_axis_colour = "red"
y_right_axis_colour = "blue"
temp_colour = "red"
feels_like_colour = "green"
rain_colour = "blue"
[render_options]
saturation = 1.0 # display colour saturation
temp_unit = "C"
use_moon_phase_instead_of_clear_night = true
# this controls the placement of the x-axis when the temperature is below zero
x_axis_always_at_min = true
[misc]
weather_data_store_path = "./cached_bom_data/"
template_path = "dashboard-template-min.svg"
modified_template_name = "dashboard.svg"
generated_png_name = "dashboard.png"
svg_icons_directory = "static/fill-svg-static/"
python_script_path = "/home/dietpi/Pimoroni/inky/examples/7color/image.py"
python_path = "/home/dietpi/env/bin/python3"
[debugging]
disable_network_requests = false # if true, the weather data will be loaded from a cached file instead of the API, make you ran the application at least once with this set to false
disable_png_output = false
disable_drawing_on_epd = true