Skip to main content

DrX protocol

Project description


Doctor X communication protocol

This library is not intended to be used on its own. Instead each Doctor X device has its own API library which uses this drx_protocol library as a dependency for the basic communication protocol.

Installation

Install the lastest python3 version. Open command line interface (cmd) and type pip3 install --upgrade drx-protocol

Usage example

See the manual of the DrX device for the full list of available commands for your device. However it is recommended to use the dedicated API libary of your device which already includes all commands.

import logging

from drx_protocol.protocol import drx_protocol, drx_command as cmd

# Set the debug level, normal operation: "INFO"
logging.basicConfig(level="DEBUG")

HOST = "192.168.1.100"
SERIAL = "fill in the serial number of the device"
ORGANIZATION = "fill in the organization from the software license provided with the device"
SIGNATURE = "fill in the signature from the software license provided with the device"

##########################################################################################################################################################
# Normal operation of the API
##########################################################################################################################################################

# constuct the API object
api = drx_protocol(
    host = HOST,
    serial = SERIAL,
    organization = ORGANIZATION,
    signature = SIGNATURE,
)

# send a single command to GET the frequency
cmd_freq = api.send_command(cmd("Frq"))
print(f"Frequency: {cmd_freq.value}")

# send a single command to SET the frequency
cmd_freq = api.send_command(cmd("Frq", "=", 2417.0))
print(f"Frequency: {cmd_freq.value}")

# send 5 commands in one message to GET all PSU voltages
response = api.send_command([cmd("V05"), cmd("V55"), cmd("V15"), cmd("Vm5"), cmd("V24")])
for val in response.values():
    print(f"{val.cmd}: {val.value}")

# Close the connection
api.close()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

drx_protocol-1.0.6.tar.gz (8.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

drx_protocol-1.0.6-py3-none-any.whl (8.5 kB view details)

Uploaded Python 3

File details

Details for the file drx_protocol-1.0.6.tar.gz.

File metadata

  • Download URL: drx_protocol-1.0.6.tar.gz
  • Upload date:
  • Size: 8.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for drx_protocol-1.0.6.tar.gz
Algorithm Hash digest
SHA256 be40b187fc2d3a3460d48e5accf497a6fc1481bb172a4e83dd5fe1a8c386dfaf
MD5 f890e97462ba15d55277cdbdb1f7b879
BLAKE2b-256 bbfcb4d0e1c45d0241d31b5ba42a0a41efad62ee0e2952f49c157bea67ca72be

See more details on using hashes here.

File details

Details for the file drx_protocol-1.0.6-py3-none-any.whl.

File metadata

  • Download URL: drx_protocol-1.0.6-py3-none-any.whl
  • Upload date:
  • Size: 8.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for drx_protocol-1.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 d3ddaadeb795404d00f9c974a70dd604fc7618b955966c2955f6ab9eca9f37cb
MD5 036142994cf03839abf449840d9b9ea3
BLAKE2b-256 377f0e7dd7e6f2fbb2392226e911be70ccf42c3442a47b61c1c60b7b7cdf8320

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page