ESP32 S3 CAM Development Board with OV2640 Camera - ESP32-S3-WROOM N16R8 Module WiFi Bluetooth Microcontroller MCU
ESP32 S3 CAM Development Board with OV2640 Camera - ESP32-S3-WROOM N16R8 Module WiFi Bluetooth Microcontroller MCU
ESP32 S3 CAM Development Board with OV2640 Camera - ESP32-S3-WROOM N16R8 Module WiFi Bluetooth Microcontroller MCU
ESP32 S3 CAM Development Board with OV2640 Camera - ESP32-S3-WROOM N16R8 Module WiFi Bluetooth Microcontroller MCU
ESP32 S3 CAM Development Board with OV2640 Camera - ESP32-S3-WROOM N16R8 Module WiFi Bluetooth Microcontroller MCU
Sale
ESP32 S3 CAM Development Board with OV2640 Camera - ESP32-S3-WROOM N16R8 Module WiFi Bluetooth Microcontroller MCU
ESP32 S3 CAM Development Board with OV2640 Camera - ESP32-S3-WROOM N16R8 Module WiFi Bluetooth Microcontroller MCU
ESP32 S3 CAM Development Board with OV2640 Camera - ESP32-S3-WROOM N16R8 Module WiFi Bluetooth Microcontroller MCU
ESP32 S3 CAM Development Board with OV2640 Camera - ESP32-S3-WROOM N16R8 Module WiFi Bluetooth Microcontroller MCU
ESP32 S3 CAM Development Board with OV2640 Camera - ESP32-S3-WROOM N16R8 Module WiFi Bluetooth Microcontroller MCU
1 of 6

ESP32 S3 CAM Development Board with OV2640 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 3,500 PKR Sale price Rs 3,000 PKR
SKU: b406,xkrt214
Add to Compare

Guaranteed Safe Checkout

ESP32 S3 CAM Development Board with OV2640 Camera - ESP32-S3-WROOM N16R8 Module WiFi Bluetooth Microcontroller MCU

ESP32 S3 CAM Development Board with OV2640 Camera - ESP32-S3-WROOM N16R8 Module WiFi Bluetooth Microcontroller MCU with Dual Type-C and ESP32-S3-Core Compatible with Arduino IOT Communication

Rs 3,000

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: OV2640 (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:

Customer Reviews

Based on 2 reviews
100%
(2)
0%
(0)
0%
(0)
0%
(0)
0%
(0)
M
Muhammad Umar Mughal

Highly recommended

i
irfan
Latest camera by DIGILOG

THank you for providing outstanding product, this ESP32 S3 CAM Development Board is latest product by espressif company and useful in AI.

Sidebar