Skip to content

Commit

Permalink
feat: wardriving screen refresh improved
Browse files Browse the repository at this point in the history
  • Loading branch information
Otrebor671 committed Aug 29, 2024
1 parent 5de6b03 commit 8c6a44a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,12 @@ void wardriving_screens_module_scanning(uint32_t packets, char* signal) {
char* packets_str = (char*) malloc(20);
sprintf(packets_str, "%ld", packets);

oled_screen_clear();
oled_screen_clear_buffer();
oled_screen_display_text("Packets", 64, 0, OLED_DISPLAY_INVERT);
oled_screen_display_text(packets_str, 64, 1, OLED_DISPLAY_INVERT);
oled_screen_display_text("Signal", 64, 3, OLED_DISPLAY_INVERT);
oled_screen_display_text(signal, 64, 4, OLED_DISPLAY_INVERT);
oled_screen_display_show();
}

void wardriving_screens_module_loading_text() {
Expand Down

0 comments on commit 8c6a44a

Please sign in to comment.