script name changed

This commit is contained in:
yair 2025-11-16 02:57:30 +02:00
parent 9051fe182a
commit 245f26e069
3 changed files with 4 additions and 4 deletions

View File

@ -71,11 +71,11 @@ echo "STATUS" | nc -u 127.0.0.1 5001
### Testing the Control Interface ### 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 ```pwsh
# Run comprehensive test suite (15 tests) # Run comprehensive test suite (15 tests)
uv run .\scripts\test_exposure_control.py uv run .\scripts\camera_control.py
``` ```
**Test Coverage:** **Test Coverage:**

View File

@ -268,14 +268,14 @@ $udpClient.Close()
## Testing ## Testing
A test client script is provided: `scripts/test_exposure_control.py` A test client script is provided: `scripts/camera_control.py`
```bash ```bash
# Run the camera pipeline # Run the camera pipeline
uv run scripts/launch-ids.py uv run scripts/launch-ids.py
# In another terminal, test exposure control # In another terminal, test exposure control
uv run scripts/test_exposure_control.py uv run scripts/camera_control.py
``` ```
## Future Enhancements ## Future Enhancements