New Home › Forums › 1. Cameras Modules for Raspberry Pi › Arducam MIPI Camera Modules › How to set strobe’s registers in OV9281?
- This topic has 3 replies, 2 voices, and was last updated 8 months, 2 weeks ago by
bin.
- AuthorPosts
- March 21, 2020 at 8:47 pm #21457
Anonymous
InactiveHello,
I am trying to use the strobe in the OV9281 module, but I am facing some difficulties.
1) Which registers should I change? I am following this guide <https://www.arducam.com/docs/camera-breakout-board/0-36mp-mt9v034-mt9v022-global-shutter/software-guide/>. Here says to set the register 0x3006 to 1 than the Strobe is in Output mode. It also says to change the register 0x3928 to 0x1A or 0xFF. But it also says to change the registers 0x3925, 0x3926, 0x3927 to 0x00.
2) In which program should I implement this changes? I saw this Forum topic <https://www.arducam.com/forums/topic/ov7251-mipi-camera/>, that it was possible to do it in “arducamsill.c”. Tried to do it, but I was not sucessfull.
May someone help me?
Thanks!
- March 23, 2020 at 7:26 am #21466
bin
KeymasterHi,
We have release a document about how to set the 9281 camera to strobe mode. Please visit here :
You can set the register in the arducamstill.c using arducam_write_sensor_reg API
/**
* @brief Write sensor register.
*
* @param camera_instance camera_instance Type CAMERA_INSTANCE, Obtained from arducam_init_camera function.
* @param address Sensor register address.
* @param value The value you want to write
* @return error code , 0 success, !0 error.
*/
int arducam_write_sensor_reg(CAMERA_INSTANCE camera_instance, uint16_t address, uint16_t value); - March 26, 2020 at 12:05 pm #21580
Anonymous
InactiveThanks for the answer! It helped me a lot!
I would like to know if you have the OV9281 datasheet and manual to share with me. I would like to take a better look at the registers addresses and values. You may send it to my email:
Thanks!
- May 12, 2020 at 7:53 pm #22545
bin
KeymasterHi,
Have you received the ov9281 datasheet from arducam?
- AuthorPosts
- You must be logged in to reply to this topic.