This is a project to handle the data stream over a network socket to a Plotjuggler instance.
The initial implementation will use UDP sockets as a transport layer and JSON.
The application is threaded to allow non-blocking operations.
- Activate the virtual environment:
- On Linux/macOS:
source .venv/bin/activate - On Windows:
.venv\Scripts\activate
- On Linux/macOS:
- Install dependencies:
- If you have a
requirements.txt, run:pip install -r requirements.txt
- If you have a
- Run your Python code:
- Example:
python main.py
- Example:
.venv/- Python virtual environment.github/copilot-instructions.md- Copilot custom instructions
- Use the virtual environment for all development work.
- Add dependencies to
requirements.txtas needed.