@@ -110,17 +110,28 @@ Functions
110110
111111 Returns the camera module ID.
112112
113- * `sensor.OV9650 `: First gen OpenMV Cam sensor - never released.
114113 * `sensor.OV2640 `: Second gen OpenMV Cam sensor - never released.
115- * `sensor.OV5640 `: High-res OpenMV Cam H7 sensor.
116- * `sensor.OV7725 `: Rolling shutter sensor module.
114+ * `sensor.OV5640 `: High-res OpenMV Cam H7 Plus sensor.
117115 * `sensor.OV7690 `: OpenMV Cam Micro sensor module.
116+ * `sensor.OV7725 `: Rolling shutter sensor module.
117+ * `sensor.OV9650 `: First gen OpenMV Cam sensor - never released.
118+ * `sensor.MT9V022 `: Global shutter sensor module.
119+ * `sensor.MT9V024 `: Global shutter sensor module.
120+ * `sensor.MT9V032 `: Global shutter sensor module.
118121 * `sensor.MT9V034 `: Global shutter sensor module.
119- * `sensor.MT9M114 `: New Rolling shutter sensor module.
122+ * `sensor.MT9M114 `: OV7725 replacement rolling shutter sensor module.
123+ * `sensor.BOSON320 `: Boson 320x256 thermal sensor module.
124+ * `sensor.BOSON640 `: Boson 640x512 thermal sensor module.
120125 * `sensor.LEPTON `: Lepton1/2/3 sensor module.
121126 * `sensor.HM01B0 `: Arduino Portenta H7 sensor module.
127+ * `sensor.HM0360 `: Arduino Portenta H7 sensor module.
122128 * `sensor.GC2145 `: Arduino Nicla Vision H7 sensor module.
129+ * `sensor.GENX320ES `: Prophesee Event Camera sensor module (engineering sample).
130+ * `sensor.GENX320 `: Prophesee Event Camera sensor module.
131+ * `sensor.PAG7920 `: PixArt Imaging sensor Module.
132+ * `sensor.PAG7936 `: PixArt Imaging sensor Module.
123133 * `sensor.PAJ6100 `: PixArt Imaging sensor Module.
134+ * `sensor.FROGEYE2020 ` : FrogEye2020 event camera sensor module - never released.
124135
125136.. function :: alloc_extra_fb(width:int, height:int, pixformat:int) -> image.Image
126137
@@ -561,6 +572,7 @@ Functions
561572 * `sensor.IOCTL_HIMAX_OSC_ENABLE ` - Pass this enum followed by ``True ``/``False `` to enable/disable the oscillator HM01B0 to save power.
562573 * `sensor.IOCTL_RGB_STATS ` - Pass this enum to get the RGB statistics from the camera sensor. Returns a tuple of (r, gb, gr, b) values.
563574 * `sensor.IOCTL_GENX320_SET_BIASES ` - Pass this enum followed by a bias enum to set the GENX320 sensor biases.
575+ * `sensor.IOCTL_GENX320_SET_BIAS ` - Pass this enum followed by a bias enum and a bias value to set the GENX320 sensor bias.
564576
565577.. function :: set_color_palette(palette:int) -> None
566578
@@ -683,6 +695,16 @@ Constants
683695
684696 `sensor.get_id() ` returns this for the MT9M114 camera.
685697
698+ .. data :: BOSON320
699+ :type: int
700+
701+ `sensor.get_id() ` returns this for the BOSON 320x256 camera.
702+
703+ .. data :: BOSON640
704+ :type: int
705+
706+ `sensor.get_id() ` returns this for the BOSON 640x512 camera.
707+
686708.. data :: LEPTON
687709 :type: int
688710
@@ -696,18 +718,33 @@ Constants
696718.. data :: HM0360
697719 :type: int
698720
699- `sensor.get_id() ` returns this for the HM01B0 camera.
721+ `sensor.get_id() ` returns this for the HM0360 camera.
700722
701723.. data :: GC2145
702724 :type: int
703725
704726 `sensor.get_id() ` returns this for the GC2145 camera.
705727
728+ .. data :: GENX320ES
729+ :type: int
730+
731+ `sensor.get_id() ` returns this for the GENX320 (Engineering Samples) camera.
732+
733+ .. data :: GENX320
734+ :type: int
735+
736+ `sensor.get_id() ` returns this for the GENX320 camera.
737+
706738.. data :: PAG7920
707739 :type: int
708740
709741 `sensor.get_id() ` returns this for the PAG7920 camera.
710742
743+ .. data :: PAG7936
744+ :type: int
745+
746+ `sensor.get_id() ` returns this for the PAG7936 camera.
747+
711748.. data :: PAJ6100
712749 :type: int
713750
@@ -1106,6 +1143,36 @@ Constants
11061143
11071144 High speed biases for the GENX320 camera sensor.
11081145
1146+ .. data :: IOCTL_GENX320_SET_BIAS
1147+ :type: int
1148+
1149+ Lets you set a single GENX320 camera sensor bias. See `sensor.ioctl() ` for more information.
1150+
1151+ .. data :: GENX320_BIAS_DIFF_OFF
1152+ :type: int
1153+
1154+ Set the GENX320 DIFF OFF bias.
1155+
1156+ .. data :: GENX320_BIAS_DIFF_ON
1157+ :type: int
1158+
1159+ Set the GENX320 DIFF ON bias.
1160+
1161+ .. data :: GENX320_BIAS_FO
1162+ :type: int
1163+
1164+ Set the GENX320 FO bias.
1165+
1166+ .. data :: GENX320_BIAS_HPF
1167+ :type: int
1168+
1169+ Set the GENX320 HPF bias.
1170+
1171+ .. data :: ENX320_BIAS_REFR
1172+ :type: int
1173+
1174+ Set the GENX320 REFR bias.
1175+
11091176.. data :: SINGLE_BUFFER
11101177 :type: int
11111178
0 commit comments