本文主要是使用XIAO Esp32 S3制作网络摄像头的第2步,获取摄像头图像。
1、效果如下:
2、所需硬件
3、代码实现
3.1硬件代码:
#include "WiFi.h"
#include "WiFiClient.h"
#include "esp_camera.h"
#include "camera_pins.h"// 设置WiFi网络的名称和密码
const char* ssid = "yuxuan";
const char* password = "yuxuan893";// 服务器的 IP 地址和端口
const char* server_ip = "192.168.0.6"; // Python 服务器的 IP 地址
const int server_port = 5555; // 与