This plugin controls the focus on an ArduCam Motorized Focus Camera. https://www.arducam.com/docs/cameras-for-raspberry-pi/motorized-focus-camera/
It uses a custom @ARDUCAMFOCUSSET FOCUS command that can be incorporated within your slicer to automatically adjust focus while printing.
You can also send relative adjustments with @ARDUCAMFOCUS 50 or @ARDUCAMFOCUS -50
Example: @ARDUCAMFOCUSSET 300 will set the focus to 300.
Please follow the manufacturer's instructions:
This plugin uses I2C to communicate with the camera. That is not enabled by default. The ArduCamFocus plugin will not function until you enable I2C. ssh to your octopi and enter this commands (this only needs to be done once):
if ! grep -Fxq "^#ArduCamFocus$" /boot/config.txt; then
sudo cat << end_of_file >> /boot/config.txt
#ArduCamFocus
dtparam=i2c_vc=on
dtparam=i2c_arm=on
end_of_file
fiAfter executing the above command, the file /boot/config.txt should now have the commands to enable I2C. In addition, you have to enable the I2C kernel module using raspi-config. Again, ssh to your octopi, and then enter this command:
sudo raspi-config- select "5 Interfacing Options"
- select "P5 I2C"
- raspi-config will ask, "Would you like the ARM I2C interface to be enabled?"
- select "Yes"
- you should see, "The ARM I2C interface is enabled"
- select "Finish"
After you reboot, the camera should become operational in OctoPrint.
Although I use this plugin and it works for me without issues, I take no resposiblity for any damage caused by using this plugin. Your camera version, i2c address, or system configuration may be different from mine. Please make sure to do your reseach and understand the dangers and please be careful.
