From 245f26e0695a4c873b5a921c07febefe94636a91 Mon Sep 17 00:00:00 2001 From: yair Date: Sun, 16 Nov 2025 02:57:30 +0200 Subject: [PATCH] script name changed --- network_guide.md | 4 ++-- scripts/UDP_CONTROL_PROTOCOL.md | 4 ++-- scripts/{test_exposure_control.py => camera_control.py} | 0 3 files changed, 4 insertions(+), 4 deletions(-) rename scripts/{test_exposure_control.py => camera_control.py} (100%) diff --git a/network_guide.md b/network_guide.md index bc0105a..f0a1326 100644 --- a/network_guide.md +++ b/network_guide.md @@ -71,11 +71,11 @@ echo "STATUS" | nc -u 127.0.0.1 5001 ### Testing the Control Interface -See [`scripts/test_exposure_control.py`](scripts/test_exposure_control.py) for automated testing. +See [`scripts/camera_control.py`](scripts/camera_control.py) for automated testing. ```pwsh # Run comprehensive test suite (15 tests) -uv run .\scripts\test_exposure_control.py +uv run .\scripts\camera_control.py ``` **Test Coverage:** diff --git a/scripts/UDP_CONTROL_PROTOCOL.md b/scripts/UDP_CONTROL_PROTOCOL.md index 5d54940..127fd17 100644 --- a/scripts/UDP_CONTROL_PROTOCOL.md +++ b/scripts/UDP_CONTROL_PROTOCOL.md @@ -268,14 +268,14 @@ $udpClient.Close() ## Testing -A test client script is provided: `scripts/test_exposure_control.py` +A test client script is provided: `scripts/camera_control.py` ```bash # Run the camera pipeline uv run scripts/launch-ids.py # In another terminal, test exposure control -uv run scripts/test_exposure_control.py +uv run scripts/camera_control.py ``` ## Future Enhancements diff --git a/scripts/test_exposure_control.py b/scripts/camera_control.py similarity index 100% rename from scripts/test_exposure_control.py rename to scripts/camera_control.py