Skip to content
This repository was archived by the owner on Jun 15, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,16 @@ Interconnections between application and h/w internals of ESP32 to acquire an im

## Troubleshooting

### Camera probe error codes

| Code | Error | Troubleshooting |
| :---: | :--- | :--- |
| 0x20001 | ESP_ERR_CAMERA_NOT_DETECTED | Check SCCB connection. |
| 0x20002 | ESP_ERR_CAMERA_FAILED_TO_SET_FRAME_SIZE | Check that resolution is supported. |
| 0x20003 | ESP_ERR_CAMERA_NOT_SUPPORTED | Check if camera-model is supported/activated. |

### Image problems

If you have issues to get the live image right, enable test pattern and see what is retrieved.

To do so, run `make menuconfig`, open `Example Configuration` menu option and check `[ ] Enable test pattern on camera output`.
Expand Down
2 changes: 2 additions & 0 deletions components/camera/include/camera.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ typedef enum {
CAMERA_FS_QVGA = 8, //!< 320x240
CAMERA_FS_VGA = 10, //!< 640x480
CAMERA_FS_SVGA = 11, //!< 800x600
CAMERA_FS_SXGA = 12, //!< 1280x1024
CAMERA_FS_UXGA = 13, //!< 1600x1200
} camera_framesize_t;

typedef enum {
Expand Down