Metadata-Version: 2.4
Name: py_madvr2
Version: 1.8.12
Summary: A package to control MadVR Envy over IP
Home-page: https://github.com/iloveicedgreentea/py-madvr
Author: iloveicedgreentea2
Classifier: Programming Language :: Python :: 3.12
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: summary

# MadVR Envy Python Library

This library implements the IP control specification for madVR Envy.

It supports real time notifications and commands asynchronously. It is intended to be used with my official Home Assistant integration ([madvr](https://www.home-assistant.io/integrations/madvr/))

## Installation

```bash
pip install py-madvr2
```

## Usage

```python
from pymadvr.madvr import Madvr

# Create instance
madvr = Madvr("192.168.1.100")  # Replace with your MadVR IP

# Connect and use
await madvr.open_connection()
response = await madvr.send_command(["GetMacAddress"])
await madvr.close_connection()
```

## Connection Architecture

This library uses an efficient connection management system:

- **User Commands**: Uses a simple connection pool that keeps connections alive for 10 seconds after last use, automatically extending the timeout when new commands arrive
- **Background Tasks**: Use direct connections to avoid interference with user commands
- **Automatic Cleanup**: Idle connections are automatically closed to respect MadVR's 60-second connection limit

This design eliminates connection race conditions and hanging issues while providing optimal performance.

## Wake On Lan

If the client is initialized without a mac, it will assume you provide your own wake on lan automation. Standby does not respond to pings so you may as well do a full power off. You may also provide a mac when you call the power on function.

## Commands

Command structure follows the same in the manual https://madvrenvy.com/wp-content/uploads/EnvyIpControl.pdf?r=112a

For things that take values, use a comma -> `["KeyPress, MENU"]`

Not every single command is implemented, such as submenus or changing complicated options. You can use commands for all the typical stuff the remote can do.

## Typing

This module uses mypy with strict typing.

## Display Commands

```python

async def demo_display_commands():
    """Demonstrate the new display commands."""

    # Initialize MadVR connection
    from pymadvr.madvr import Madvr
    madvr = Madvr("192.168.1.100")  # Replace with your MadVR IP

    try:
        # Connect to MadVR
        await madvr.open_connection()

        # Display a message for 3 seconds
        await madvr.display_message(3, "Hello from Python!")
        await asyncio.sleep(4)  # Wait for message to clear

        # Display audio volume control (0-100%, currently at 75%)
        await madvr.display_audio_volume(0, 75, 100, "%")
        await asyncio.sleep(3)

        # Show audio mute indicator
        await madvr.display_audio_mute()
        await asyncio.sleep(2)

        # Close the audio mute indicator
        await madvr.close_audio_mute()

        # Display decibel-based volume (AVR style: -80dB to 0dB, currently -25dB)
        await madvr.display_audio_volume(-80, -25, 0, "dB")
        await asyncio.sleep(3)

    except Exception as e:
        print(f"Error: {e}")
    finally:
        await madvr.close_connection()
```

## Testing

### Unit Tests

Run unit tests with:
```bash
pytest tests/test_MadVR.py -v
```

### Integration Tests

Integration tests require a real MadVR device on the network. Set these environment variables:

```bash
# Required for Wake-on-LAN functionality
export MADVR_MAC=00:11:22:33:44:55  # Your device's MAC address

# Optional (defaults shown)
export MADVR_HOST=192.168.1.100
export MADVR_PORT=44077
```

To get your device's MAC address (device must be on):
```bash
python scripts/power_on_device.py --get-mac
```

To power on the device for testing:
```bash
python scripts/power_on_device.py
```

Run integration tests:
```bash
pytest tests/test_simple_integration.py -v
```

Run connection pool tests:
```bash
pytest tests/test_connection_pool.py -v
```

Integration tests will automatically skip if the device is not available.

### Connection Pool Testing

The connection pool tests verify:
- Connection reuse and timeout behavior
- Background task isolation
- No hanging or race conditions

These tests help ensure the reliability improvements in the connection management system.
