Skip to content

Commit

Permalink
Update OLED RX
Browse files Browse the repository at this point in the history
  • Loading branch information
joecupano committed Mar 27, 2021
1 parent e41f0a2 commit 848925c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions HASviolet_websox.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,11 @@ def find_password(user):
def rx_oled_scroll():
HAShat.OLED.fill(0)
HAShat.OLED.show()
HAShat.OLED.text("RSSI: " + HASit.receive_rssi, 0, 9, 1)
HAShat.OLED.text(HASit.receive_ascii, 0, 17, 1)
HAShat.OLED.text("RSSI: " + HASit.receive_rssi, 0, 0, 1)
HAShat.OLED.text(HASit.receive_ascii[0:20], 0, 8, 1)
HAShat.OLED.text(HASit.receive_ascii[20:40], 0, 16, 1)
HAShat.OLED.text(HASit.receive_ascii[40:60], 0, 24, 1)
HAShat.OLED.text(HASit.receive_ascii[60:73], 0, 32, 1)
HAShat.OLED.show()

def main():
Expand Down

0 comments on commit 848925c

Please sign in to comment.