Updated to try ARDUCAM_CAMERA_HM0360
Works at 480x480
But...
It it's orientation is 180 degrees from the other two cameras.
Aargh...
I noticed in the header file there is the method:
cam.setHorizontalMirror(true);
It compiles but does not link...
So looks like another unimplemented function:
Next up see if the methods in hm360.h is implemented:
int setVerticalFlip(bool flip_enable);
int setHorizontalMirror(bool mirror_enable);
EDIT1:
Well they exist in the .cpp file
But:
int HM0360::setVerticalFlip(bool flip_enable)
{
return -1;
}
int HM0360::setHorizontalMirror(bool mirror_enable)
{
return -1;
}
But don't do anything
EDIT2
HM1B0 works at 320x240 same orientation as HM0360. And the two methods are also not implemented.
Note 320x240 is the size of the sensor so ...