From 229e2671e866d5ede9722d5a9948d99ecd51409b Mon Sep 17 00:00:00 2001 From: Josh Bauer <joshbauer3@gmail.com> Date: Sun, 10 Nov 2019 14:08:33 -0500 Subject: [PATCH] fixed memtemp location for inky display Signed-off-by: Josh Bauer <joshbauer3@gmail.com> --- pwnagotchi/plugins/default/memtemp.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pwnagotchi/plugins/default/memtemp.py b/pwnagotchi/plugins/default/memtemp.py index af4f271..418ddfd 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_inky(): + h_pos = (140, 68) + v_pos = (165, 54) else: h_pos = (155, 76) v_pos = (180, 61)