Home ALL Products ESP32 S3 Cam Development Board With OV3660 Camera - ESP32-S3-wroom N16R8 Module WiFi Bluetooth Microcontroller MCU With Dual Type-c And ESP32-S3-core Compatible With Arduino IOT Communication
ESP32 S3 Cam Development Board With OV3660 Camera - ESP32-S3-wroom N16R8 Module WiFi Bluetooth Microcontroller MCU With Dual Type-c And ESP32-S3-core Compatible With Arduino IOT Communication - product video, preview showing arduino web editor interface with code and settings menu
ESP32 S3 Cam Development Board With OV3660 Camera - ESP32-S3-wroom N16R8 Module WiFi Bluetooth Microcontroller MCU With Dual Type-c And ESP32-S3-core Compatible With Arduino IOT Communication - front and back of the GOOUUU ESP32-S3-CAM board, showing the camera lens, ESP32-S3 module, RST and BOOT buttons, dual USB-C ports and a microSD slot.
ESP32 S3 Cam Development Board With OV3660 Camera - ESP32-S3-wroom N16R8 Module WiFi Bluetooth Microcontroller MCU With Dual Type-c And ESP32-S3-core Compatible With Arduino IOT Communication - a black PCB with an attached camera module, dual USB-C ports, two buttons, and pin headers.
ESP32 S3 Cam Development Board With OV3660 Camera - ESP32-S3-wroom N16R8 Module WiFi Bluetooth Microcontroller MCU With Dual Type-c And ESP32-S3-core Compatible With Arduino IOT Communication - OV2640 camera, featuring dual USB-C ports, BOOT and Reset buttons, and annotated labels for its components.
ESP32 S3 Cam Development Board With OV3660 Camera - ESP32-S3-wroom N16R8 Module WiFi Bluetooth Microcontroller MCU With Dual Type-c And ESP32-S3-core Compatible With Arduino IOT Communication - OV2640 camera module, featuring two USB Type-C ports, a reset button, a boot button, and pin headers.
ESP32 S3 Cam Development Board With OV3660 Camera - ESP32-S3-wroom N16R8 Module WiFi Bluetooth Microcontroller MCU With Dual Type-c And ESP32-S3-core Compatible With Arduino IOT Communication - OV2640 camera module, dual USB-C ports, reset and boot buttons, and annotated dimensions on a black PCB.
-24%Sold out
ESP32 S3 Cam Development Board With OV3660 Camera - ESP32-S3-wroom N16R8 Module WiFi Bluetooth Microcontroller MCU With Dual Type-c And ESP32-S3-core Compatible With Arduino IOT Communication - product video, preview showing arduino web editor interface with code and settings menu
ESP32 S3 Cam Development Board With OV3660 Camera - ESP32-S3-wroom N16R8 Module WiFi Bluetooth Microcontroller MCU With Dual Type-c And ESP32-S3-core Compatible With Arduino IOT Communication - front and back of the GOOUUU ESP32-S3-CAM board, showing the camera lens, ESP32-S3 module, RST and BOOT buttons, dual USB-C ports and a microSD slot.
ESP32 S3 Cam Development Board With OV3660 Camera - ESP32-S3-wroom N16R8 Module WiFi Bluetooth Microcontroller MCU With Dual Type-c And ESP32-S3-core Compatible With Arduino IOT Communication - a black PCB with an attached camera module, dual USB-C ports, two buttons, and pin headers.
ESP32 S3 Cam Development Board With OV3660 Camera - ESP32-S3-wroom N16R8 Module WiFi Bluetooth Microcontroller MCU With Dual Type-c And ESP32-S3-core Compatible With Arduino IOT Communication - OV2640 camera, featuring dual USB-C ports, BOOT and Reset buttons, and annotated labels for its components.
ESP32 S3 Cam Development Board With OV3660 Camera - ESP32-S3-wroom N16R8 Module WiFi Bluetooth Microcontroller MCU With Dual Type-c And ESP32-S3-core Compatible With Arduino IOT Communication - OV2640 camera module, featuring two USB Type-C ports, a reset button, a boot button, and pin headers.
ESP32 S3 Cam Development Board With OV3660 Camera - ESP32-S3-wroom N16R8 Module WiFi Bluetooth Microcontroller MCU With Dual Type-c And ESP32-S3-core Compatible With Arduino IOT Communication - OV2640 camera module, dual USB-C ports, reset and boot buttons, and annotated dimensions on a black PCB.

ESP32 S3 Cam Development Board With OV3660 Camera - ESP32-S3-wroom N16R8 Module WiFi Bluetooth Microcontroller MCU With Dual Type-c And ESP32-S3-core Compatible With Arduino IOT Communication

Regular price Rs 4,620 Sale price Rs 3,530
SKU: b406,xkrt214
Log in to use Wishlist
Add to Compare

Notify me if back in stock

Enter your email address to be notified if the product becomes available again.

The ESP32-S3-WROOM-N16R8 Development Board features a powerful dual-core 32-bit LX7 processor designed for AI computing, image recognition, and IoT applications. With an integrated 2MP OV2640 camera, dual Type-C ports, and shared Wi-Fi/Bluetooth antenna, it’s an excellent choice for AI vision projects, robotics, and smart devices.

Example Code

////////////////////////////////////////////////

#include "esp_camera.h"
#include <WiFi.h>
#include "esp_http_server.h"

// Replace with your network credentials
const char* ssid = "Digilog";// Router ssid name or wifi name of your home/office
const char* password = "DIGILOGPK";// password of your home/office wifi

// GOOUUU ESP32-S3 CAM N16R8 pin configuration
#define PWDN_GPIO_NUM     -1
#define RESET_GPIO_NUM    -1
#define XCLK_GPIO_NUM     15
#define SIOD_GPIO_NUM     4
#define SIOC_GPIO_NUM     5
#define Y9_GPIO_NUM       16
#define Y8_GPIO_NUM       17
#define Y7_GPIO_NUM       18
#define Y6_GPIO_NUM       12
#define Y5_GPIO_NUM       10
#define Y4_GPIO_NUM       8
#define Y3_GPIO_NUM       9
#define Y2_GPIO_NUM       11
#define VSYNC_GPIO_NUM    6
#define HREF_GPIO_NUM     7
#define PCLK_GPIO_NUM     13

#define LED_GPIO_NUM      21

httpd_handle_t camera_httpd = NULL;

// Control variables
int jpeg_quality = 12;
int frame_delay = 30;
framesize_t frame_size = FRAMESIZE_VGA;

static esp_err_t capture_handler(httpd_req_t *req) {
    camera_fb_t * fb = NULL;
    
    digitalWrite(LED_GPIO_NUM, HIGH);
    
    fb = esp_camera_fb_get();
    if (!fb) {
        digitalWrite(LED_GPIO_NUM, LOW);
        httpd_resp_send_500(req);
        return ESP_FAIL;
    }
    
    httpd_resp_set_type(req, "image/jpeg");
    httpd_resp_send(req, (const char *)fb->buf, fb->len);
    
    esp_camera_fb_return(fb);
    digitalWrite(LED_GPIO_NUM, LOW);
    
    return ESP_OK;
}

static esp_err_t stream_handler(httpd_req_t *req) {
    camera_fb_t * fb = NULL;
    esp_err_t res = ESP_OK;
    char part_buf[64];
    
    httpd_resp_set_type(req, "multipart/x-mixed-replace;boundary=frame");
    
    while(true) {
        fb = esp_camera_fb_get();
        if (!fb) {
            Serial.println("Camera capture failed");
            res = ESP_FAIL;
            break;
        }
        
        size_t hlen = snprintf(part_buf, 64, "Content-Type: image/jpeg\r\nContent-Length: %u\r\n\r\n", fb->len);
        
        res = httpd_resp_send_chunk(req, "--frame\r\n", 8);
        res = httpd_resp_send_chunk(req, part_buf, hlen);
        res = httpd_resp_send_chunk(req, (const char *)fb->buf, fb->len);
        res = httpd_resp_send_chunk(req, "\r\n", 2);
        esp_camera_fb_return(fb);
        
        if (res != ESP_OK) break;
        
        vTaskDelay(frame_delay / portTICK_PERIOD_MS);
    }
    return res;
}

static esp_err_t index_handler(httpd_req_t *req) {
    const char* html = R"rawliteral(
<!DOCTYPE html>
<html>
<head><title>ESP32-CAM Control</title>
<style>
body{font-family:Arial;margin:20px;}
.controls{margin:20px 0;padding:10px;border:1px solid #ccc;}
button{padding:8px 15px;margin:5px;background:#007bff;color:white;border:none;cursor:pointer;}
button:hover{background:#0056b3;}
#stream{max-width:100%;border:1px solid #333;}
</style>
</head>
<body>
<h1>ESP32-CAM Live Stream</h1>
<div class="controls">
<h3>Quality Control</h3>
<button onclick="setQuality(5)">High Quality</button>
<button onclick="setQuality(12)">Medium Quality</button>
<button onclick="setQuality(20)">Low Quality</button>
</div>
<div class="controls">
<h3>Speed Control</h3>
<button onclick="setSpeed(10)">Fast (10ms)</button>
<button onclick="setSpeed(30)">Normal (30ms)</button>
<button onclick="setSpeed(50)">Slow (50ms)</button>
</div>
<div class="controls">
<h3>Resolution</h3>
<button onclick="setResolution(6)">VGA (640x480)</button>
<button onclick="setResolution(5)">QVGA (320x240)</button>
<button onclick="setResolution(8)">SVGA (800x600)</button>
</div>
<img id="stream" src="/stream">
<script>
function setQuality(q) {
  fetch('/control?quality=' + q);
}
function setSpeed(s) {
  fetch('/control?speed=' + s);
}
function setResolution(r) {
  fetch('/control?resolution=' + r).then(() => {
    document.getElementById('stream').src = '/stream?' + Date.now();
  });
}
</script>
</body>
</html>
)rawliteral";
    
    httpd_resp_set_type(req, "text/html");
    httpd_resp_send(req, html, strlen(html));
    return ESP_OK;
}

static esp_err_t control_handler(httpd_req_t *req) {
    char query[200];
    if (httpd_req_get_url_query_str(req, query, sizeof(query)) == ESP_OK) {
        char param[32];
        
        if (httpd_query_key_value(query, "quality", param, sizeof(param)) == ESP_OK) {
            jpeg_quality = atoi(param);
            sensor_t * s = esp_camera_sensor_get();
            s->set_quality(s, jpeg_quality);
        }
        
        if (httpd_query_key_value(query, "speed", param, sizeof(param)) == ESP_OK) {
            frame_delay = atoi(param);
        }
        
        if (httpd_query_key_value(query, "resolution", param, sizeof(param)) == ESP_OK) {
            framesize_t new_size = (framesize_t)atoi(param);
            sensor_t * s = esp_camera_sensor_get();
            s->set_framesize(s, new_size);
        }
    }
    
    httpd_resp_send(req, "OK", 2);
    return ESP_OK;
}

void setup() {
    Serial.begin(115200);
    
    pinMode(LED_GPIO_NUM, OUTPUT);
    digitalWrite(LED_GPIO_NUM, LOW);
    
    camera_config_t config;
    config.ledc_channel = LEDC_CHANNEL_0;
    config.ledc_timer = LEDC_TIMER_0;
    config.pin_d0 = Y2_GPIO_NUM;
    config.pin_d1 = Y3_GPIO_NUM;
    config.pin_d2 = Y4_GPIO_NUM;
    config.pin_d3 = Y5_GPIO_NUM;
    config.pin_d4 = Y6_GPIO_NUM;
    config.pin_d5 = Y7_GPIO_NUM;
    config.pin_d6 = Y8_GPIO_NUM;
    config.pin_d7 = Y9_GPIO_NUM;
    config.pin_xclk = XCLK_GPIO_NUM;
    config.pin_pclk = PCLK_GPIO_NUM;
    config.pin_vsync = VSYNC_GPIO_NUM;
    config.pin_href = HREF_GPIO_NUM;
    config.pin_sscb_sda = SIOD_GPIO_NUM;
    config.pin_sscb_scl = SIOC_GPIO_NUM;
    config.pin_pwdn = PWDN_GPIO_NUM;
    config.pin_reset = RESET_GPIO_NUM;
    config.xclk_freq_hz = 20000000;
    config.pixel_format = PIXFORMAT_JPEG;
    config.frame_size = frame_size;
    config.jpeg_quality = jpeg_quality;
    config.fb_count = 1;
    
    esp_err_t err = esp_camera_init(&config);
    if (err != ESP_OK) {
        Serial.printf("Camera init failed with error 0x%x", err);
        return;
    }
    
    WiFi.begin(ssid, password);
    while (WiFi.status() != WL_CONNECTED) {
        delay(1000);
        Serial.println("Connecting to WiFi...");
    }
    Serial.println("WiFi connected");
    Serial.print("Camera Ready! Use 'http://");
    Serial.print(WiFi.localIP());
    Serial.println("' to connect");
    
    httpd_config_t config_httpd = HTTPD_DEFAULT_CONFIG();
    
    httpd_uri_t index_uri = {.uri = "/", .method = HTTP_GET, .handler = index_handler, .user_ctx = NULL};
    httpd_uri_t capture_uri = {.uri = "/capture", .method = HTTP_GET, .handler = capture_handler, .user_ctx = NULL};
    httpd_uri_t stream_uri = {.uri = "/stream", .method = HTTP_GET, .handler = stream_handler, .user_ctx = NULL};
    httpd_uri_t control_uri = {.uri = "/control", .method = HTTP_GET, .handler = control_handler, .user_ctx = NULL};
    
    httpd_start(&camera_httpd, &config_httpd);
    httpd_register_uri_handler(camera_httpd, &index_uri);
    httpd_register_uri_handler(camera_httpd, &capture_uri);
    httpd_register_uri_handler(camera_httpd, &stream_uri);
    httpd_register_uri_handler(camera_httpd, &control_uri);
}

void loop() {
    delay(1000);
}

//============================

This module offers low power consumption and real-time processing, making it ideal for edge AI and computer vision tasks. Perfect for DIY makers, educators, and professionals working on camera-enabled IoT systems.

Main Features

  • ESP32-S3-WROOM-N16R8 module with dual-core 32-bit LX7 processor for high-speed AI and IoT performance.
  • Built-in 2MP OV2640 camera for real-time image capture, video streaming, and face recognition applications.
  • Dual Type-C ports: one for USB OTG (host/device) and another for serial debugging.
  • Wi-Fi (2.4GHz) and Bluetooth 5.0 (LE & Mesh) with a shared antenna for stable wireless connectivity.
  • Works reliably even at high temperatures — suitable for industrial and educational environments.
  • Ideal for AI vision, robotics, smart surveillance, machine vision, and IoT development.

Specifications

  • Processor: Dual-core 32-bit LX7
  • Flash / PSRAM: 16MB Flash + 8MB PSRAM
  • Camera: OV3660 (2 Megapixel)
  • Connectivity: Wi-Fi 802.11 b/g/n (2.4GHz), Bluetooth 5 (LE + Mesh)
  • USB Ports: Dual Type-C (OTG + Serial Debug)
  • Operating Voltage: 5V via USB

Related Products

Learn & Explore

Buy the ESP32-S3-WROOM-N16R8 Camera Development Board now from Digilog.pk — your trusted source for AI and IoT development boards in Pakistan.

 

ESP32-S3

ESP32-S3-CAM

TF Card Holder

TF Card Holder


CH340C Chip

CH340C Chip


Dual Type-C Interface

Dual Type-C Interface


OV2640 Camera

OV2640 Camera


Performance parameters:

1 Support IEEE802.11b/g/n protocol
2 Support 20MHz and 40MHz bandwidth in 2.4GHz band
3 Support 1T1R mode, data rate up to 150Mbps
4 Wireless Multimedia (WMM)
5 Frame aggregation (TX/RX A-MPDU, TX/RX A-MSDU)
6 Immediate Block ACK
7 Fragmentation/defragmentation
8 Low power Bluetooth (BluetoothLE): Bluetooth5, Bluetooth Mesh
9 High power mode (20dBm)
10 Support rate 125Kbps, 500Kbps, 1Mbps, 2Mbps
11 Wi-Fi and Bluetooth coexist, sharing the same antenna
12 32-bit LX7 dual-core processor, main frequency up to 240MHZ
ESP32-S3-WROOM N16R8

Package Includes

  • 1 × ESP32-S3 CAM Development Board

Example Code:

Frequently Bought Together

INMP441 Mems High Precision Omnidirectional Microphone I2s Snr Low Power Module - a circular black PCB with gold pins labeled SD, VDD, GND, L/R, WS, SCK, alongside two sets of yellow header pins. INMP441 Mems High Precision Omnidirectional Microphone I2s Snr Low Power Module - a dimensioned product diagram next to the circular black circuit board connected to a breadboard with wires.
-47%
Log in to use Wishlist
Add to Compare

INMP441 Mems High Precision Omnidirectional Microphone I2s Snr Low Power Module

Regular price Rs 750 Sale priceRs 400
MAX98357 I2s Pcm Digital Audio Amplifier Board - 3W Class D DAC Decoder - a purple square PCB with a central chip, surface-mount components, and pin labels. MAX98357 I2s Pcm Digital Audio Amplifier Board - 3W Class D DAC Decoder - a purple circuit board with a green screw terminal, a small black chip, and yellow header pins.
-14%
Log in to use Wishlist
Add to Compare

MAX98357 I2s Pcm Digital Audio Amplifier Board - 3W Class D DAC Decoder

Regular price Rs 700 Sale priceRs 600
TB6612FNG Motor Driver Module For Arduino - a red circuit board with a black chip and two strips of black pin headers on a white background.
Log in to use Wishlist
Add to Compare

TB6612FNG Motor Driver Module For Arduino

Sale priceRs 560
ESP32-S3 Devkitc-1 N16R8 Development Board – 16MB Flash, 8MB Psram, Wi-Fi & Bluetooth 5.0 Le - Labelled diagram of the ESP32-S3-DevKitC board showing the WROOM-1 module, power chip, WS2812 RGB LED, RST and BOOT buttons and dual USB-C ports. ESP32-S3 Devkitc-1 N16R8 Development Board – 16MB Flash, 8MB Psram, Wi-Fi & Bluetooth 5.0 Le - shown from the front and back, featuring two USB-C ports, a reset button, a boot button, and an RGB LED.
Log in to use Wishlist
Add to Compare
2 Axis Pan Bit Tilt Brackets For SG90 And MG90 Servo Motor - shown as a black plastic assembly with two servos and attached multi-colored wiring. 2 Axis Pan Bit Tilt Brackets For SG90 And MG90 Servo Motor - shown as a set of black plastic mounting components with a small bag of assembly screws.
Log in to use Wishlist
Add to Compare

2 Axis Pan Bit Tilt Brackets For SG90 And MG90 Servo Motor

Sale priceRs 240
2.4GHz-5.8GHz 5db Wi-Fi Antenna With Ipex Connector - held in a hand, showing a white antenna with an attached thin black cable and a gold IPEX connector. 2.4GHz-5.8GHz 5db Wi-Fi Antenna With Ipex Connector - a white antenna held in a hand with a black cable ending in a small gold-coloured connector.
Log in to use Wishlist
Add to Compare

2.4GHz-5.8GHz 5db Wi-Fi Antenna With Ipex Connector

Sale priceRs 160