From cf9740334773fe3fd97fb699a254d8cea035c413 Mon Sep 17 00:00:00 2001 From: alanbjohnston Date: Thu, 15 Dec 2022 10:40:28 -0500 Subject: [PATCH] turn off horizontal mirror, increase saturation, brightness, contrast --- .../esp32-cam-send-jpeg-serial.ino | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cubesatsim/esp32-cam-send-jpeg-serial/esp32-cam-send-jpeg-serial.ino b/cubesatsim/esp32-cam-send-jpeg-serial/esp32-cam-send-jpeg-serial.ino index 36ec4209..105124eb 100644 --- a/cubesatsim/esp32-cam-send-jpeg-serial/esp32-cam-send-jpeg-serial.ino +++ b/cubesatsim/esp32-cam-send-jpeg-serial/esp32-cam-send-jpeg-serial.ino @@ -435,10 +435,10 @@ void config_camera() { sensor_t * s = esp_camera_sensor_get(); -// s->set_brightness(s, 2); // -2 to 2 -// s->set_contrast(s, 0); // -2 to 2 -// s->set_saturation(s, 1); // -2 to 2 - s->set_hmirror(s, 1); // 0 = disable , 1 = enable + s->set_brightness(s, 2); // -2 to 2 + s->set_contrast(s, 0); // -2 to 2 + s->set_saturation(s, 1); // -2 to 2 +// s->set_hmirror(s, 1); // 0 = disable , 1 = enable // s->set_vflip(s, 1); }