EasyManua.ls Logo

Freenove ESP32-S3 User Manual

Default Icon
142 pages
To Next Page IconTo Next Page
To Next Page IconTo Next Page
To Previous Page IconTo Previous Page
To Previous Page IconTo Previous Page
Page #92 background imageLoading...
Page #92 background image
Any concerns? support@freenove.com
Chapter 6 TCP/IP
90
www.freenove.com
42
43
44
45
46
47
48
49
50
51
52
}
if (Serial.available() > 0) {
delay(20);
String line = Serial.readString();
client.print(line);
}
if (client.connected () == 0) {
client.stop();
WiFi.disconnect();
}
}
Add WiFi function header file.
1
#include <WiFi.h>
Enter the actual router name, password, remote server IP address, and port number.
3
4
5
6
const char *ssid_Router = "********"; //Enter the router name
const char *password_Router = "********"; //Enter the router password
#define REMOTE_IP "********" //input the remote server which is you want to connect
#define REMOTE_PORT 8888 //input the remote port which is the remote provide
Apply for the method class of WiFiClient.
7
WiFiClient client;
Connect specified WiFi until it is successful. If the name and password of WiFi are correct but it still fails to
connect, please push the reset key.
13
14
15
16
17
18
WiFi.begin(ssid_Router, password_Router);
Serial.print("\nWaiting for WiFi... ");
while (WiFi.status() ! = WL_CONNECTED) {
Serial.print(".");
delay(500);
}
Send connection request to remote server until connect successfully. When connect successfully, print out the
connecting prompt on the serial monitor and send messages to remote server.
28
29
30
31
32
33
while (!client.connect(REMOTE_IP, REMOTE_PORT)) {//Connect to Server
Serial.println("Connection failed.");
Serial.println("Waiting a moment before retrying...");
}
Serial.println("Connected");
client.print("Hello\n");
When ESP32-S3 receive messages from servers, it will print them out via serial port; Users can also send
messages to servers from serial port.
37
38
39
40
41
42
if (client.available() > 0) {
delay(20);
//read back one line from the server
String line = client.readString();
Serial.println(REMOTE_IP + String(":") + line);
}
Question and Answer IconNeed help?

Do you have a question about the Freenove ESP32-S3 and is the answer not in the manual?

Freenove ESP32-S3 Specifications

General IconGeneral
MicrocontrollerESP32-S3
Clock Speed240 MHz
SRAM512 KB
Flash Memory8MB
PSRAM8 MB
BluetoothBluetooth 5, Bluetooth Mesh
Operating Voltage3.3 V
ADC Resolution12-bit
DAC Resolution8-bit
CPUDual-core Xtensa® 32-bit LX7
Wi-Fi802.11 b/g/n
USBUSB Type-C

Summary

Important Information

Getting Started

Instructions for initial setup and reading the 'Start Here.pdf' document.

Get Support and Offer Input

Information on obtaining technical support and providing feedback to Freenove.

Safety and Precautions

Essential safety guidelines and warnings for using the product.

About Freenove

Copyright

Preface

ESP32-S3 WROOM Overview

Introduction to the ESP32-S3 microcontroller unit and its features.

CH343 Driver Installation

Guide to installing the CH343 driver for Windows and macOS.

Programming Software Setup

Instructions for installing and setting up the Arduino IDE for programming.

Environment Configuration

Steps to configure the Arduino IDE for ESP32-S3 board support.

Notes for GPIO

Details on strapping pins and their configurations for ESP32-S3.

Chapter 1 LED

Project 1.1 Blink

A project demonstrating how to control an LED to blink using ESP32-S3.

Chapter 2 Serial Communication

Project 2.1 Serial Print

Sending data from ESP32-S3 to a computer via serial communication.

Project 2.2 Serial Read and Write

Receiving data from a computer and sending it to ESP32-S3 via serial.

Chapter 3 Bluetooth

Project 3.1 BLE Data Passthrough

Demonstrates data transmission using Bluetooth Low Energy between ESP32-S3 and mobile phones.

Chapter 4 Read and Write the SDcard

Project 4.1 SDMMC Test

Using ESP32-S3 to read and write data to an SD card via SDMMC interface.

Format SD Card

Guide for formatting an SD card on Windows and macOS systems.

Chapter 5 WiFi Working Modes

Project 5.1 Station Mode

Configuring ESP32-S3 to connect to a WiFi router as a client.

Project 5.2 AP Mode

Setting up ESP32-S3 to act as a WiFi Access Point (hotspot).

Project 5.3 AP+Station Mode

Enabling ESP32-S3 to operate as both a WiFi client and Access Point simultaneously.

Chapter 6 TCP/IP

Project 6.1 As Client

Using ESP32-S3 as a TCP client to connect to a server on the same LAN.

Project 6.2 As Server

Using ESP32-S3 as a TCP server to accept client connections.

Chapter 7 Camera Web Server

Project 7.1 Camera Web Server

Accessing ESP32-S3 camera stream via a web browser.

Project 7.2 Video Web Server

Viewing real-time video data from ESP32-S3 camera via web pages.

Project 7.3 Camera and SDcard

Capturing photos with ESP32-S3 camera and saving them to an SD card.

Chapter 8 Camera Tcp Server

Project 8.1 Camera Tcp Server

Displaying ESP32-S3 camera video data on a mobile phone.

What's next?

End of the Tutorial

Concluding remarks and contact information for further assistance.