Skip to content

Commit

Permalink
Fix for gps labels on inkyphat displays
Browse files Browse the repository at this point in the history
Positioned the gps labels correctly on inkyphat displays
  • Loading branch information
davenicoll committed Feb 26, 2020
1 parent 2361609 commit 489bce0
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions pwnagotchi/plugins/default/gps.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,9 @@ def on_ui_setup(self, ui):
lon_pos = (125, 80)
alt_pos = (130, 90)
elif ui.is_inky():
# guessed values, add tested ones if you can
lat_pos = (112, 30)
lon_pos = (112, 49)
alt_pos = (87, 63)
lat_pos = (127, 60)
lon_pos = (127, 70)
alt_pos = (127, 80)
elif ui.is_waveshare144lcd():
# guessed values, add tested ones if you can
lat_pos = (67, 73)
Expand Down

0 comments on commit 489bce0

Please sign in to comment.