OT Bioelettronica - Muovi Constants¶
- enum biosignal_device_interface.constants.devices.otb.otb_muovi_constants.MuoviDetectionMode(value)[source]¶
Bases:
Enum
Enum class for the detection mode of the Muovi device.
Note
Preamp gain of 4 has a double input range and a slightly larger noise w.r.t. preamp gain of 8. It can be used when DC component of EMG signals is higher and generates saturation before the high pass filter resulting in flat signals. The input range before the high pass filter is +/-600mV when the preamp is set to 4 and +/-300mV when the preamp is set to 8.
Valid values are as follows:
- NONE = <MuoviDetectionMode.NONE: 0>¶
No detection mode set.
- MONOPOLAR_GAIN_8 = <MuoviDetectionMode.MONOPOLAR_GAIN_8: 1>¶
Monopolar Mode.preamp gain 8. 32 monopolar bioelectrical signals + 6 accessory signals. Resolution is 286.1 nV and range +/-9.375 mV.
- MONOPOLAR_GAIN_4 = <MuoviDetectionMode.MONOPOLAR_GAIN_4: 2>¶
Monopolar Mode (Only EMG -> EEG=>Mode 0). preamp gain 4. 32 bioelectrical signals + 6 accessory signals. Resolution is 572.2nV and range +/-18.75 mV.
- IMPEDANCE_CHECK = <MuoviDetectionMode.IMPEDANCE_CHECK: 3>¶
Impedance Check on all 32 + 6 channels.
- TEST = <MuoviDetectionMode.TEST: 4>¶
Ramps on all 32 + 6 channels.
The
Enum
and its members also have the following methods:- static _generate_next_value_(name, start, count, last_values, *args, **kwds)¶
Generate the next value when not given.
name: the name of the member start: the initial start value or None count: the number of existing members last_value: the last value assigned or None
- static _new_member_(*args, **kwargs)¶
Create and return a new object. See help(type) for accurate signature.
- enum biosignal_device_interface.constants.devices.otb.otb_muovi_constants.MuoviWorkingMode(value)[source]¶
Bases:
Enum
Enum class for the working mode of the Muovi device.
Note
High pass filter implemented by firmware subtracting the exponential moving average, obtained by: Average_ChX[t] = (1-alpha) Average_ChX[t-1] + alpha ChX[t] Where alpha is equal to 1/25 for MODE = 0, 1 or 2. It is equal to 1/2 in case of Impedance check. For the standard modes, this result in a high pass filter with a cut-off frequency of 10.5 Hz, when sampling the signals at 2000 Hz. More in general the cut-off frequency is Fsamp/190
Valid values are as follows:
- NONE = <MuoviWorkingMode.NONE: 0>¶
No working mode set.
- EEG = <MuoviWorkingMode.EEG: 1>¶
EEG Mode: FSAMP 500 Hz, DC coupled, 24 bit resolution
- EMG = <MuoviWorkingMode.EMG: 2>¶
EMG Mode: FSAMP 2000 Hz, DC coupled, 16 bit resolution, High pass filtered at 10 Hz
The
Enum
and its members also have the following methods:- static _generate_next_value_(name, start, count, last_values, *args, **kwds)¶
Generate the next value when not given.
name: the name of the member start: the initial start value or None count: the number of existing members last_value: the last value assigned or None
- static _new_member_(*args, **kwargs)¶
Create and return a new object. See help(type) for accurate signature.
- biosignal_device_interface.constants.devices.otb.otb_muovi_constants.MUOVI_AVAILABLE_CHANNELS_DICT: dict[DeviceType, dict[DeviceChannelTypes, int]] = {<DeviceType.OTB_MUOVI: 2>: {<DeviceChannelTypes.ALL: 1>: 38, <DeviceChannelTypes.AUXILIARY: 2>: 6, <DeviceChannelTypes.BIOSIGNAL: 3>: 32}, <DeviceType.OTB_MUOVI_PLUS: 3>: {<DeviceChannelTypes.ALL: 1>: 70, <DeviceChannelTypes.AUXILIARY: 2>: 6, <DeviceChannelTypes.BIOSIGNAL: 3>: 64}}¶
- biosignal_device_interface.constants.devices.otb.otb_muovi_constants.MUOVI_CONVERSION_FACTOR_DICT: dict[MuoviDetectionMode, int] = {<MuoviDetectionMode.MONOPOLAR_GAIN_4: 2>: 0.0002861, <MuoviDetectionMode.MONOPOLAR_GAIN_8: 1>: 0.0005722}¶
Dictionary to get the gain of the Muovi detection mode. The keys are the detection modes of the Muovi device. The values are the gain of the detection mode in V.
- biosignal_device_interface.constants.devices.otb.otb_muovi_constants.MUOVI_NETWORK_PORT: int = 54321¶
The default network port of the Muovi device.
- biosignal_device_interface.constants.devices.otb.otb_muovi_constants.MUOVI_SAMPLES_PER_FRAME_DICT: dict[DeviceType, dict[MuoviWorkingMode, int]] = {<DeviceType.OTB_MUOVI: 2>: {<MuoviWorkingMode.EEG: 1>: 12, <MuoviWorkingMode.EMG: 2>: 18}, <DeviceType.OTB_MUOVI_PLUS: 3>: {<MuoviWorkingMode.EEG: 1>: 6, <MuoviWorkingMode.EMG: 2>: 10}}¶
Dictionary to get the frame length of the Muovi.
The keys are the device type of a Muovi (Normal or Plus).
- The values are dictionaries with the following keys:
MuoviWorkingMode.EEG: The frame length of the EEG working mode
MuoviWorkingMode.EMG: The frame length of the EMG working mode.
- biosignal_device_interface.constants.devices.otb.otb_muovi_constants.MUOVI_WORKING_MODE_CHARACTERISTICS_DICT: dict[MuoviWorkingMode, dict[str, int]] = {<MuoviWorkingMode.EEG: 1>: {'bytes_per_sample': 3, 'sampling_frequency': 500}, <MuoviWorkingMode.EMG: 2>: {'bytes_per_sample': 2, 'sampling_frequency': 2000}}¶
Dictionary to get characteristics of the Muovi working mode.
The keys are the working modes of the Muovi device.
- The values are dictionaries with the following keys:
“sampling_frequency”: The sampling frequency of the working mode in Hz.
“bytes_per_sample”: The number of bytes per sample.