![]() |
BioImager
4.9.0
A .NET microscopy imaging application based on Bio library. Supports various microscopes by using imported libraries & GUI automation. Supports XInput game controllers to move stage, take images, run ImageJ macros on images or Bio C# scripts.
|
Public Member Functions | |
| None | __init__ (self, _CoolLEDConnection connection, str name, **kwargs) |
| typing.List[str] | get_status (self) |
| None | enable (self) |
| None | disable (self) |
| bool | get_is_on (self) |
| microscope.TriggerType | trigger_type (self) |
| microscope.TriggerMode | trigger_mode (self) |
| None | set_trigger (self, microscope.TriggerType ttype, microscope.TriggerMode tmode) |
Public Member Functions inherited from microscope.abc.LightSource | |
| float | power (self) |
| None | power (self, float power) |
| float | get_set_power (self) |
Public Member Functions inherited from microscope.abc.TriggerTargetMixin | |
| None | trigger (self) |
Public Member Functions inherited from microscope.abc.Device | |
| None | __del__ (self) |
| bool | get_is_enabled (self) |
| None | initialize (self) |
| None | shutdown (self) |
| None | add_setting (self, name, dtype, get_func, set_func, values, typing.Optional[typing.Callable[[], bool]] readonly=None) |
| get_setting (self, str name) | |
| get_all_settings (self) | |
| None | set_setting (self, str name, value) |
| describe_setting (self, str name) | |
| describe_settings (self) | |
| update_settings (self, incoming, bool init=False) | |
Protected Member Functions | |
| None | _do_shutdown (self) |
| float | _do_get_power (self) |
| None | _do_set_power (self, float power) |
| None | _do_trigger (self) |
Protected Member Functions inherited from microscope.abc.LightSource | |
Protected Member Functions inherited from microscope.abc.TriggerTargetMixin | |
Protected Member Functions inherited from microscope.abc.Device | |
| _do_disable (self) | |
| _do_enable (self) | |
Protected Attributes | |
| _conn = _CoolLEDChannelConnection(connection, name) | |
| bool | _should_be_on = False |
Protected Attributes inherited from microscope.abc.LightSource | |
| float | _set_point = 0.0 |
Protected Attributes inherited from microscope.abc.Device | |
| dict | _settings = {} |
Additional Inherited Members | |
Public Attributes inherited from microscope.abc.Device | |
| bool | enabled = False |
Individual light devices that compose a CoolLED controller.
Definition at line 133 of file coolled.py.
| None microscope.controllers.coolled._CoolLEDChannel.__init__ | ( | self, | |
| _CoolLEDConnection | connection, | ||
| str | name, | ||
| ** | kwargs ) |
Reimplemented from microscope.abc.LightSource.
Definition at line 136 of file coolled.py.
|
protected |
Internal function that actually returns the light source power.
Reimplemented from microscope.abc.LightSource.
Definition at line 183 of file coolled.py.
|
protected |
Internal function that actually sets the light source power. This function will be called by the `power` attribute setter after clipping the argument to the [0, 1] interval.
Reimplemented from microscope.abc.LightSource.
Definition at line 186 of file coolled.py.
|
protected |
Private method - actual shutdown of the device. Users should be calling :meth:`shutdown` and not this method. Concrete implementations should implement this method instead of `shutdown`.
Reimplemented from microscope.abc.Device.
Definition at line 160 of file coolled.py.
|
protected |
Actual trigger of the device. Classes implementing this interface should implement this method instead of `trigger`.
Reimplemented from microscope.abc.TriggerTargetMixin.
Definition at line 228 of file coolled.py.
| None microscope.controllers.coolled._CoolLEDChannel.disable | ( | self | ) |
Disable the device for a short period for inactivity.
Reimplemented from microscope.abc.Device.
Definition at line 175 of file coolled.py.
| None microscope.controllers.coolled._CoolLEDChannel.enable | ( | self | ) |
Enable the device.
Reimplemented from microscope.abc.Device.
Definition at line 166 of file coolled.py.
| bool microscope.controllers.coolled._CoolLEDChannel.get_is_on | ( | self | ) |
Return True if the light source is currently able to produce light.
Reimplemented from microscope.abc.LightSource.
Definition at line 178 of file coolled.py.
| typing.List[str] microscope.controllers.coolled._CoolLEDChannel.get_status | ( | self | ) |
Query and return the light source status.
Reimplemented from microscope.abc.LightSource.
Definition at line 163 of file coolled.py.
| None microscope.controllers.coolled._CoolLEDChannel.set_trigger | ( | self, | |
| microscope.TriggerType | ttype, | ||
| microscope.TriggerMode | tmode ) |
Set device for a specific trigger.
Reimplemented from microscope.abc.TriggerTargetMixin.
Definition at line 210 of file coolled.py.
| microscope.TriggerMode microscope.controllers.coolled._CoolLEDChannel.trigger_mode | ( | self | ) |
Reimplemented from microscope.abc.TriggerTargetMixin.
Definition at line 207 of file coolled.py.
| microscope.TriggerType microscope.controllers.coolled._CoolLEDChannel.trigger_type | ( | self | ) |
Reimplemented from microscope.abc.TriggerTargetMixin.
Definition at line 190 of file coolled.py.
|
protected |
Definition at line 140 of file coolled.py.
|
protected |
Definition at line 146 of file coolled.py.