1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
"""
An event button box.
This module contains a class implementing an event button box.
"""
__author__ = 'Florian Krause <florian@expyriment.org>, \
Oliver Lindemann <oliver@expyriment.org>'
__version__ = '0.7.0'
__revision__ = '55a4e7e'
__date__ = 'Wed Mar 26 14:33:37 2014 +0100'
from _streamingbuttonbox import StreamingButtonBox
class EventButtonBox(StreamingButtonBox):
"""A class implementing an event button box input."""
def __init__(self, interface):
"""Create an event button box input.
Compared to a StreamingButtonBox, an EventButtonBox has no baseline
(baseline=None). The methods wait() and check() are therefore
responsive to every incomming interface event.
Parameters
----------
interface : io.SerialPort or io.ParallelPort
an interface object
"""
StreamingButtonBox.__init__(self, interface, None)
@property
def baseline(self):
"""Getter for baseline"""
return self._baseline
@baseline.setter
def baseline(self, value):
"""Setter for baseline."""
print("Warning: A baseline cannot be defined for an EventButtonBox!")
self._baseline = None
|