MCPcopy Create free account
hub / github.com/LabPy/lantz / mode

Method mode

lantz/drivers/pco/sensicam.py:112–116  ·  view source on GitHub ↗

Imaging mode as a 3-element tuple (type, gain and submode).

(self)

Source from the content-addressed store, hash-verified

110
111 @Feat()
112 def mode(self):
113 """Imaging mode as a 3-element tuple (type, gain and submode).
114 """
115 _mode = self.coc.mode
116 return _mode & 0xFF, (_mode >> 8) & 0xFF, (_mode >> 16) & 0xFF
117
118 @mode.setter
119 def mode(self, typ_gain_submode):

Callers

nothing calls this directly

Calls 1

recallMethod · 0.80

Tested by

no test coverage detected