Devices & Components
Breadboard 100x50
10 jumper wires 150mm male
Arduino Uno Rev3
ESP32 CAM
Software & Tools
Arduino IDE
Project description
Code
ESP32 Code
c
1#include "HardwareSerial.h" 2 3HardwareSerial SerialESP32(2); 4 5void setup() { 6 Serial.begin(115200); 7 SerialESP32.begin(9600, SERIAL_8N1, 16, 17); 8 Serial.println("ESP32-CAM Ready"); 9} 10 11void loop() { 12 if (SerialESP32.available()) { 13 String data = SerialESP32.readStringUntil('\n'); 14 Serial.println("Received: " + data); 15 } 16}
Downloadable files
Arduino code
This is Arduino code
arduino_code.ino
ESP32 Code
This is for ESP32
esp.ino
Documentation
How to Exchange Data between Arduino and ESP32 using Serial Communication
https://www.programmingboss.com/2023/01/serial-communication-between-arduino-and-esp32-CAM-UART-data-communication.html
Comments
Only logged in users can leave comments