Source code for psychopy.hardware.pr
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Part of the PsychoPy library
# Copyright (C) 2002-2018 Jonathan Peirce (C) 2019-2024 Open Science Tools Ltd.
# Distributed under the terms of the GNU General Public License (GPL).
"""Interfaces for Photo Research Inc. spectroradiometers.
These are optional components that can be obtained by installing the
`psychopy-photoresearch` extension into the current environment.
"""
from psychopy.tools.pkgtools import PluginStub
[docs]class PR650(PluginStub, plugin="psychopy-photoresearch", doclink="https://psychopy.github.io/psychopy-photoresearch/coder/PR650"):
pass
[docs]class PR655(PluginStub, plugin="psychopy-photoresearch", doclink="https://psychopy.github.io/psychopy-photoresearch/coder/PR655"):
pass
Back to top