File: __init__.py

package info (click to toggle)
pyjvcprojector 2.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 280 kB
  • sloc: python: 4,075; makefile: 21; sh: 5
file content (15 lines) | stat: -rw-r--r-- 261 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""pytest tests."""

from jvcprojector.device import END

IP = "127.0.0.1"
PORT = 12345
TIMEOUT = 3.0
MAC = "abcd1234"
MODEL = "B2A2"
PASSWORD = "pass1234"


def cc(hdr: bytes, cmd: str) -> bytes:
    """Create a command."""
    return hdr + cmd.encode() + END