1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-08 06:12:20 +01:00

Drop 128x160 ESP-32 camera resolution (#1813)

This commit is contained in:
Oxan van Leeuwen
2021-05-31 12:27:41 +02:00
committed by GitHub
parent 4d586b1446
commit 25af5ab7c6
4 changed files with 17 additions and 9 deletions

View File

@@ -55,9 +55,6 @@ void ESP32Camera::dump_config() {
case FRAMESIZE_QQVGA:
ESP_LOGCONFIG(TAG, " Resolution: 160x120 (QQVGA)");
break;
case FRAMESIZE_QQVGA2:
ESP_LOGCONFIG(TAG, " Resolution: 128x160 (QQVGA2)");
break;
case FRAMESIZE_QCIF:
ESP_LOGCONFIG(TAG, " Resolution: 176x155 (QCIF)");
break;
@@ -209,9 +206,6 @@ void ESP32Camera::set_frame_size(ESP32CameraFrameSize size) {
case ESP32_CAMERA_SIZE_160X120:
this->config_.frame_size = FRAMESIZE_QQVGA;
break;
case ESP32_CAMERA_SIZE_128X160:
this->config_.frame_size = FRAMESIZE_QQVGA2;
break;
case ESP32_CAMERA_SIZE_176X144:
this->config_.frame_size = FRAMESIZE_QCIF;
break;