diff options
| author | Luke Hoersten <[email protected]> | 2026-06-13 18:57:54 -0500 |
|---|---|---|
| committer | Luke Hoersten <[email protected]> | 2026-06-13 18:59:25 -0500 |
| commit | 3ba136c96263c8f7760e73ea1e55361bee526416 (patch) | |
| tree | aa050710d60b8a36e26781040d35158da937754d /CMakeLists.txt | |
Initial Scrypted Viewport scaffold
Plain ESP-IDF project targeting Waveshare ESP32-P4-ETH-POE with a 5" 800x480
MIPI-DSI capacitive touch panel. Stub app_main with TODOs for Ethernet, mDNS,
HTTP API (/health, /config, /frame, /sleep, /brightness), JPEG decode, and
touch callback delivery per the v1 spec in README.md.
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..5281b89 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,8 @@ +cmake_minimum_required(VERSION 3.16) + +set(PROJECT_VER "0.1") +set(PROJECT_VER_NUMBER 1) + +include($ENV{IDF_PATH}/tools/cmake/project.cmake) + +project(scrypted-viewport) |
