{"id":21703737,"url":"https://github.com/carvilsi/flipper0-wifi-map","last_synced_at":"2026-03-07T05:32:20.500Z","repository":{"id":167672320,"uuid":"629064226","full_name":"carvilsi/flipper0-wifi-map","owner":"carvilsi","description":"WiFi map for FlipperZero and ESP32","archived":false,"fork":false,"pushed_at":"2025-12-10T16:40:28.000Z","size":292,"stargazers_count":102,"open_issues_count":0,"forks_count":6,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-12-11T01:57:29.586Z","etag":null,"topics":["esp32","flipper-zero","flipperzero","wifi"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/carvilsi.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-04-17T14:43:11.000Z","updated_at":"2025-12-10T16:40:32.000Z","dependencies_parsed_at":null,"dependency_job_id":"98371d90-e89d-4d7e-b31b-43dfc1e9caa6","html_url":"https://github.com/carvilsi/flipper0-wifi-map","commit_stats":null,"previous_names":["carvilsi/flipper0-wifi-map"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/carvilsi/flipper0-wifi-map","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carvilsi%2Fflipper0-wifi-map","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carvilsi%2Fflipper0-wifi-map/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carvilsi%2Fflipper0-wifi-map/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carvilsi%2Fflipper0-wifi-map/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/carvilsi","download_url":"https://codeload.github.com/carvilsi/flipper0-wifi-map/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/carvilsi%2Fflipper0-wifi-map/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30208731,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T05:23:27.321Z","status":"ssl_error","status_checked_at":"2026-03-07T05:00:17.256Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["esp32","flipper-zero","flipperzero","wifi"],"created_at":"2024-11-25T21:35:07.219Z","updated_at":"2026-03-07T05:32:20.467Z","avatar_url":"https://github.com/carvilsi.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# WiFi_MaP\n\n![wifi_map](https://github.com/carvilsi/flipper0-wifi-map/blob/main/wifi_map.png?raw=true)\n\nAn ESP32 and FlipperZero wifi mapping.\n\nCheck the ESP32 side at: [esp32-wifi-map](https://github.com/carvilsi/esp32-wifi-map)\n\n## Install, etc.\n\nClone this repo at `applications_user/` folder under `flipperzero-firmware`\n\n`$ git clone git@github.com:carvilsi/flipper0-wifi-map.git`\n\n### Build and flash\n\n`$ ./fbt launch APPSRC=wifi_map`\n\n### Logs\n\n`$ minicom -D /dev/ttyACM0 -b 230400`\n\n## Connection FlipperZero and ESP32\n\n| Flipper Zero GPIO |    ESP32    |\n|-------------------|-------------|\n|      GND          |     GND     |\n|      RX           | TXD GPIO_17 |\n|      3V3          |     3V3     |\n\n## Collected Data\n\nWiFi_MaP, by now, saves the collected data on a kind of **CSV** formated file, like:\n\n```\n##### 20-9-2024_17:47:47 #####\nf8a4985c;1.96;3;18\n394d4b0b;17.78;3;18\nbab9b9a6;34.81;3;18\n2e41b0ed;34.81;4;18\nf81b53a0;42.17;3;18\n287de1e8;68.13;5;18\nf1d1f410;68.13;4;18\n6cb4288c;74.99;4;18\n7b2695be;74.99;4;18\n163976e1;82.54;4;18\n198bb499;90.85;4;18\nff52db41;90.85;3;18\n72a684f0;100.00;4;18\n163976e1;100.00;4;18\nf8a4985c;1.78;3;21\n```\nEvery time that WiFi_MaP starts adds the date to the file surronded by hash signs, then starts to add the collected AP\ndata separated by ';'. The maximun AP that scans is 20.\nThe data is:\n\n| AP name hashed | distance to AP (meters) | AP auth mode (1) | seconds since the scan started | \n|----------------|-------------------------|------------------|--------------------------------|\n|    f8a4985c    |          1.96           |         3        |               18               |\n\n\n**(1)** -\u003e 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)\n\n| Open | WEP | WPA_PSK | WPA2_PSK | WPA_WPA2_PSK |\n|------|-----|---------|----------|--------------|\n|  0   |  1  |    2    |    3     |      4       |\n\n---\n\n**Note:** main branch works with latest version of FlipperZero firmware, **1.0.1** (in the moment of writting this).\nIf you want to have this app running with a firmware version \u003c 1.* check the *legacy-previous-API-1* at the repo.\n\n---\n\n\u003c3 \u0026 Hack the Planet!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcarvilsi%2Fflipper0-wifi-map","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcarvilsi%2Fflipper0-wifi-map","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcarvilsi%2Fflipper0-wifi-map/lists"}