diff --git a/pwnagotchi/defaults.yml b/pwnagotchi/defaults.yml index a41650d3..bb0672d0 100644 --- a/pwnagotchi/defaults.yml +++ b/pwnagotchi/defaults.yml @@ -1,5 +1,4 @@ -# WARNING WARNING WARNING WARNING -# +# # This file is recreated with default settings on every pwnagotchi restart, # use /etc/pwnagotchi/config.yml to configure this unit. # diff --git a/pwnagotchi/plugins/default/gps.py b/pwnagotchi/plugins/default/gps.py index cc1d43ac..7100c9a1 100644 --- a/pwnagotchi/plugins/default/gps.py +++ b/pwnagotchi/plugins/default/gps.py @@ -54,6 +54,10 @@ class GPS(plugins.Plugin): lat_pos = (127, 75) lon_pos = (122, 84) alt_pos = (127, 94) + elif ui.is_waveshare_v1(): + lat_pos = (130, 70) + lon_pos = (125, 80) + alt_pos = (130, 90) elif ui.is_inky(): # guessed values, add tested ones if you can lat_pos = (112, 30) diff --git a/pwnagotchi/plugins/default/memtemp.py b/pwnagotchi/plugins/default/memtemp.py index 0682b7b3..4d5dd640 100644 --- a/pwnagotchi/plugins/default/memtemp.py +++ b/pwnagotchi/plugins/default/memtemp.py @@ -44,6 +44,9 @@ class MemTemp(plugins.Plugin): if ui.is_waveshare_v2(): h_pos = (180, 80) v_pos = (180, 61) + elif ui.is_waveshare_v1(): + h_pos = (170, 80) + v_pos = (170, 61) elif ui.is_waveshare144lcd(): h_pos = (53, 77) v_pos = (78, 67)