Skip to content

Commit aa2431f

Browse files
authored
Merge pull request #3 from carvilsi/updating-firmware-1.0
Updating firmware 1.0
2 parents 8f64fdd + 10d33ab commit aa2431f

File tree

3 files changed

+258
-176
lines changed

3 files changed

+258
-176
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
.*.swp
2+
tags

README.md

+45
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,48 @@ Clone this repo at `applications_user/` folder under `flipperzero-firmware`
2828
| RX | TXD GPIO_17 |
2929
| 3V3 | 3V3 |
3030

31+
## Collected Data
32+
33+
WiFi_MaP, by now, saves the collected data on a kind of **CSV** formated file, like:
34+
35+
```
36+
##### 20-9-2024_17:47:47 #####
37+
f8a4985c;1.96;3;18
38+
394d4b0b;17.78;3;18
39+
bab9b9a6;34.81;3;18
40+
2e41b0ed;34.81;4;18
41+
f81b53a0;42.17;3;18
42+
287de1e8;68.13;5;18
43+
f1d1f410;68.13;4;18
44+
6cb4288c;74.99;4;18
45+
7b2695be;74.99;4;18
46+
163976e1;82.54;4;18
47+
198bb499;90.85;4;18
48+
ff52db41;90.85;3;18
49+
72a684f0;100.00;4;18
50+
163976e1;100.00;4;18
51+
f8a4985c;1.78;3;21
52+
```
53+
Every time that WiFi_MaP starts adds the date to the file surronded by hash signs, then starts to add the collected AP
54+
data separated by ';'. The maximun AP that scans is 20.
55+
The data is:
56+
57+
| AP name hashed | distance to AP (meters) | AP auth mode (1) | seconds since the scan started |
58+
|----------------|-------------------------|------------------|--------------------------------|
59+
| f8a4985c | 1.96 | 3 | 18 |
60+
61+
62+
**(1)** -> Table of ESP32 AP WIFI Auth Mode [wifi_auth_mode_t](https://github.com/pycom/esp-idf-2.0/blob/092aa8176ffa0ab386fb6d33e50e1a267bef9d1c/components/esp32/include/esp_wifi_types.h#L58)
63+
64+
| Open | WEP | WPA_PSK | WPA2_PSK | WPA_WPA2_PSK |
65+
|------|-----|---------|----------|--------------|
66+
| 0 | 1 | 2 | 3 | 2 |
67+
68+
---
69+
70+
**Note:** main branch works with latest version of FlipperZero firmware, **1.0.1** (in the moment of writting this).
71+
If you want to have this app running with a firmware version < 1.* check the *legacy-previous-API-1* at the repo.
72+
73+
---
74+
75+
<3 & Hack the Planet!

0 commit comments

Comments
 (0)