CSIght
**WiFi CSI radar for Flipper Zero + ESP32** Detect motion, presence, and proximity through walls using WiFi Channel State Information — no cameras, no IR, no special sensors.
File Explorer
Download Latest Version (.zip)- compile.yml
- CMakeLists.txt
- csi_handler.c
- csi_handler.h
- CMakeLists.txt
- mesh_node.c
- mesh_node.h
- CMakeLists.txt
- web_ui.c
- web_ui.h
- web_ui_html.h
- CMakeLists.txt
- Kconfig.projbuild
- main.c
- CMakeLists.txt
- sdkconfig.defaults
- csight_icon_10x10.png
- csight.h
- csight_app.c
- csight_draw.c
- csight_flash.c
- csight_log.c
- csight_log.h
- csight_uart.c
- application.fam
- SConscript
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- csight_logo.svg
- FLASH_INSTRUCTIONS.md
- LICENSE
- README.md
# Installation Guide
git clone https://github.com/joelewis012/CSIght
Downloads the entire project code from GitHub to your computer.
cd CSIght
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Python 3 Python is required to use pip.
pip install esptool
Installs the package published on PyPI directly — no need to clone the source.
Pulled directly from this repo's README.
3. CMake
Mediumcd esp32
This project's files live in a subfolder, so move into it first.
mkdir build && cd build
Creates a folder to hold the build output and moves into it.
cmake ..
Analyzes the source code and generates build configuration files (must be run inside the build folder).
make
Compiles the code based on the generated build configuration to produce an executable.
