Merge pull request #727 from ArnCo/master

Set correct position for memtemp plugin so that it does not overlap with regular messages for waveshare27inch.
This commit is contained in:
evilsocket
2019-12-16 12:00:46 +02:00
committed by GitHub
2 changed files with 4 additions and 1 deletions

View File

@ -53,6 +53,9 @@ class MemTemp(plugins.Plugin):
elif ui.is_inky():
h_pos = (140, 68)
v_pos = (165, 54)
elif ui.is_waveshare27inch():
h_pos = (192, 138)
v_pos = (216, 122)
else:
h_pos = (155, 76)
v_pos = (180, 61)