How to use the hardware.hardware.Hardware.__init__ function in hardware

To help you get started, we’ve selected a few hardware examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Antergos / Cnchi / src / hardware / modules / virtualbox.py View on Github external
def __init__(self):
        Hardware.__init__(self, CLASS_NAME, CLASS_ID, VENDOR_ID, DEVICES)
github Antergos / Cnchi / src / hardware / modules / i915.py View on Github external
def __init__(self):
        Hardware.__init__(self, CLASS_NAME, CLASS_ID, VENDOR_ID, DEVICES)
github Antergos / Cnchi / src / hardware / modules / radeon.py View on Github external
def __init__(self):
        Hardware.__init__(self, CLASS_NAME, CLASS_ID,
                          VENDOR_ID, DEVICES, PRIORITY)
github Antergos / Cnchi / src / hardware / modules / vmware.py View on Github external
def __init__(self):
        Hardware.__init__(self, CLASS_NAME, CLASS_ID, VENDOR_ID, DEVICES)
github Antergos / Cnchi / src / hardware / modules / amdgpu.py View on Github external
def __init__(self):
        Hardware.__init__(self, CLASS_NAME, CLASS_ID, VENDOR_ID, PCI_FILE, ENABLED, PRIORITY)
github Antergos / Cnchi / cnchi / hardware / vmware.py View on Github external
def __init__(self):
        Hardware.__init__(self, CLASS_NAME, CLASS_ID, VENDOR_ID, DEVICES)
github wright-group / PyCMDS / hardware / opas / opas.py View on Github external
def __init__(self, *arks, **kwargs):
        self.kind = 'OPA'
        hw.Hardware.__init__(self, *arks, **kwargs)
github Antergos / Cnchi / src / hardware / modules / uvesafb.py View on Github external
def __init__(self):
        Hardware.__init__(self, CLASS_NAME, CLASS_ID,
                          VENDOR_ID, DEVICES, PRIORITY)
github Antergos / Cnchi / src / hardware / modules / via.py View on Github external
def __init__(self):
        Hardware.__init__(self, CLASS_NAME, CLASS_ID, VENDOR_ID, DEVICES)