![]() |
optoOIS
|
The optoOIS SDK is organized in the following way:
Board.Channel.System.RegisterCommand(parameters)
Board : Low/mid level object for operating the firmware such as vector patterns, simple/pro commands, etc
Channel : A given channel, which can set input types, gain, etc.
System : Each channel has its own stages. From here you can call methods that get/set individual registers.
registers : Each system has several registers, which are dictionaries with elements regarding valid units/range.
If necessary, flash the FW using: STM32 Cube Programmer This build of optoOIS is based on FW Version: 18750200-00-S_SAIPH_1.0.742344
Import necessary module and initialize a board
import optoOIS mre3ois = optoOIS.connectmre3ois()
Define the system you want to interact with (board.channel.system)
sig_gen = mre3ois.Channel_0.SignalGenerator
Start setting values
sig_gen.SetAmplitude(0.1)
Each Channel has a Manager for handling signal flow. This happens mostly behind-the-scenes, However, it is important to keep in mind the following procedure.
For example, to output a sinusoid on Channel_0 in open-loop (current) mode...
import optoOIS mre3ois = optoOIS.connectmre3ois() ch_0 = mre3ois.Channel_0 ch_0.SignalGenerator.SetAsInput() # (1) here we tell the Manager that the sig gen is the desired input ch_0.InputConditioning.SetGain(1.0) # (2) here we tell the Manager some input conditioning parameters ch_0.SetControlMode(optoOIS.Units.CURRENT) # (3) here we tell the Manager that our input will be in units of current ch_0.LinearOutput.SetCurrentLimit(0.7) # (4) here we tell the Manager to limit the current to 700mA (default) ch_0.Manager.CheckSignalFlow() # This is a useful method to make sure the signal flow is configured correctly.
The channel is configured. The output of the Signal Generator will now proceed through the signal flow mentioned above.
Therefore, next we will configure the output of the Signal Generator.
sg_0 = mre3ois.Channel_0.SignalGenerator sg_0.SetUnit(optoOIS.Units.CURRENT) # here we set the sig gen to output in units of current (This must match the control mode!) sg_0.SetShape(optoOIS.Waveforms.SINUSOIDAL) # here we set the sig gen output waveform type sg_0.SetFrequency(10.0) # here we set the frequency in Hz sg_0.SetAmplitude(0.100) # here we set the amplitude in Amps sg_0.Run() # done.
Each Channel has a Manager for handling signal flow. This happens mostly behind-the-scenes, However, it is important to keep in mind the following procedure.
For example, to output a sinusoid on Channel_0 in open-loop (current) mode...
import optoOIS mre3ois = optoOIS.connectmre3ois() ch_0 = mre3ois.Channel_0 ch_0.StaticInput.SetAsInput() # (1) here we tell the Manager that we will use a static input ch_0.InputConditioning.SetGain(1.0) # (2) here we tell the Manager some input conditioning parameters ch_0.SetControlMode(optoOIS.Units.CURRENT) # (3) here we tell the Manager that our input will be in units of current ch_0.LinearOutput.SetCurrentLimit(0.7) # (4) here we tell the Manager to limit the current to 700mA (default) ch_0.Manager.CheckSignalFlow() # This is a useful method to make sure the signal flow is configured correctly.
The channel is configured. The output of the Static system will now proceed through the signal flow mentioned above.
Therefore, next we will configure the output of the Static System.
si_0 = mre3ois.Channel_0.StaticInput si_0.SetCurrent(0.075) # here we set a static output of 75mA. (Control mode above must also be CURRENT!)
There are many other systems to interact with and configure. For more information, see the links below...
mre3ois.Channel_0.VectorPatternUnit.SetExternalTrigger() mre3ois.Channel_0.InputConditioning.SetGain(0.7)
mre3ois.load_snapshot(2) mre3ois.reset()
Additional operations are available directly through the Board object (get/set multiple, reset, etc)
For example, multiple set/get can be done (up to 8 at once).
After the following commands, the Signal Generator system will output a sinusoid on channel 0 (You must still configure the Manager!)
import optoOIS mre3ois = optoOIS.connectmre3ois() mngr = mre3ois.Channel_0.Manager sig_gen = mre3ois.Channel_0.SignalGenerator systems = [mngr.input, sig_gen.shape, sig_gen.frequency, sig_gen.amplitude, sig_gen.unit, sig_gen.run] values = [sig_gen.sys_id, optoOIS.Waveforms.SINUSOIDAL, 10.0, 0.1, optoOIS.Units.CURRENT, True ] mre3ois.set_value(systems, values) mre3ois.get_value(systems)
Note: You can find which registers a system has by calling get_register_names
>>> sig_gen.get_register_names() ['unit', 'run', 'shape', 'frequency', 'amplitude', 'offset', 'phase', 'cycles', 'duty_cycle']