Skip to content

Commit

Permalink
[FL-3862] Fix typos in the RFID detector app (#229)
Browse files Browse the repository at this point in the history
  • Loading branch information
Skorpionm authored Jun 20, 2024
1 parent b0a71ea commit c213846
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions nfc_rfid_detector/.catalog/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
## 1.3
- Сhange GUI
## 1.2
- Rework application with new NFC API
## 1.1
Expand Down
Binary file modified nfc_rfid_detector/.catalog/gallery/nfc-rfid-both-detected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified nfc_rfid_detector/.catalog/gallery/nfc-rfid-nfc-detected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified nfc_rfid_detector/.catalog/gallery/nfc-rfid-rfid-detected.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions nfc_rfid_detector/application.fam
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ App(
requires=["gui"],
stack_size=4 * 1024,
fap_description="Identify the reader type: NFC (13 MHz) and/or RFID (125 KHz).",
fap_version="1.2",
fap_icon="nfc_rfid_detector_10px.png",
fap_version="1.3",
fap_icon="nfc_rfid_detector_icon_10px.png",
fap_category="Tools",
fap_icon_assets="images",
fap_author="SkorP",
Expand Down
Binary file removed nfc_rfid_detector/nfc_rfid_detector_10px.png
Binary file not shown.
Binary file added nfc_rfid_detector/nfc_rfid_detector_icon_10px.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@ void nfc_rfid_detector_view_field_presence_draw(
17,
NfcRfidDetectorFieldPresenceIcons[NfcRfidDetectorTypeFieldPresenceNfc]);
canvas_set_font(canvas, FontSecondary);
canvas_draw_str(canvas, 9, 62, "13,56 MHz");
canvas_draw_str(canvas, 9, 62, "13.56 MHz");
}

if(model->rfid_field) {
char str[16];
snprintf(str, sizeof(str), "%.02f KHz", (double)model->rfid_frequency / 1000);
snprintf(str, sizeof(str), "%.02f kHz", (double)model->rfid_frequency / 1000);
canvas_set_font(canvas, FontPrimary);
canvas_draw_str(canvas, 76, 10, "LF RFID");
canvas_draw_icon(
Expand Down

0 comments on commit c213846

Please sign in to comment.