|
|
@@ -1,11 +1,35 @@
|
|
|
+<style>
|
|
|
+ .container {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ justify-content: space-evenly;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+ .container img{
|
|
|
+ border-radius: 10px;
|
|
|
+ margin: 10px;
|
|
|
+ width: 350px;
|
|
|
+ height: 350px;
|
|
|
+ object-fit: cover;
|
|
|
+ }
|
|
|
+</style>
|
|
|
+
|
|
|
# [UHF]RFID App for FlipperZero
|
|
|
|
|
|
-
|
|
|
+<div class="container">
|
|
|
+ <img src="assets/img/uhf_demo_app2.jpg">
|
|
|
+ <img src="assets/img/uhf_demo_app.jpg">
|
|
|
+</div>
|
|
|
|
|
|
## Overview
|
|
|
|
|
|
This repository contains a UHF RFID application developed for FlipperZero, a versatile multi-tool device. The app leverages the YRM100 module to enable UHF RFID functionality.
|
|
|
|
|
|
+## Current Status
|
|
|
+
|
|
|
+Working on the settings page to allow for changing of the module's settings.
|
|
|
+Adding options like settings the access password, baud rate, rf power, channel, etc.
|
|
|
+
|
|
|
## What's Changed
|
|
|
|
|
|
- A complete refractor from the concept code to covert to a framework. So that it's easy to refractor for different possible module's. See [module.h](uhf_module.h) for more info.
|