Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Exported Uniform Resource (UR) QR codes, a widely adopted standard for exchangin
- Bug Fix: Corrected handling of certain binary-encoded QR codes
- Fix fingerprint unset warn message for rare case
- Improved QR code decoding performance and added inverted color QR code detection
- Improve scan TinySeed and other binary visibility by drawing punches only

# Changelog 25.10.1 - October 2025

Expand Down
19 changes: 0 additions & 19 deletions src/krux/pages/tiny_seed.py
Original file line number Diff line number Diff line change
Expand Up @@ -633,24 +633,6 @@ def choose_rect(rects):
img.draw_rectangle(outline, lcd.WHITE, thickness=thickness)
return rect

def _draw_grid(self, img):
if not kboard.has_minimal_display:
for i in range(13):
img.draw_line(
self.x_regions[i],
self.y_regions[0],
self.x_regions[i],
self.y_regions[-1],
lcd.WHITE,
)
img.draw_line(
self.x_regions[0],
self.y_regions[i],
self.x_regions[-1],
self.y_regions[i],
lcd.WHITE,
)

def _detect_and_draw_punches(self, img):
"""Detect punched bits on the grid and update the seed numbers accordingly."""
page_seed_numbers = [0] * 12
Expand Down Expand Up @@ -811,7 +793,6 @@ def scanner(self, w24=False):
self._gradient_corners(rect, img)
self._map_punches_region(rect, page)
page_seed_numbers = self._detect_and_draw_punches(img)
self._draw_grid(img)
if kboard.is_m5stickv:
img.lens_corr(strength=1.0, zoom=0.56)
if kboard.is_amigo:
Expand Down