stm32 development board car and camera1. Experiment preparation2. Wiring diagram3. Experimental steps and experimental resultsIntroduction to the main program source code of wifi configuration
STM32F103 | wifi camera |
---|---|
PD5 | RX |
PD6 | TX |
GND | GND |
5V | 5V |
as the picture shows:
Wiring of servo gimbal
Shortcut method: You can directly connect to the wifi opened by esp32. In this experiment, the name is ESP32_WIFI_TEST, and then the ip address camera information of the mobile app is 192.169.4.1 to control the car
If only one mode is enabled, then sta_ip:null or ap_ip:null When sta_ip:null occurs, you need to check whether the connected wifi name and password are correct. If correct, whether only one mode of AP is turned on and the STA mode is not turned on.
On the login page, set according to the IP obtained by the serial port assistant. For example, the IP obtained by the serial port assistant is "192.168.2.199", then the configuration is as follows
Then click to log in directly
(Optional) If you want to connect to the hotspot of the wifi camera, the IP address must be set to 192.168.4.1, as shown in the picture
Horizontal screen
xxxxxxxxxx
Note: Every time you restart the app, you need to click the exit button in the upper right corner, then exit and reconfigure the IP address information before logging in.
xxxxxxxxxx
The above constants are defined in the esp32_wifi.c (standard library)/bsp_wifi.c (HAL library) source code of this project
If you want to change the wifi mode, this tutorial defaults to dual mode coexistence, that is, STA+AP mode Select the mode under the file esp32_wifi.h
xxxxxxxxxx
#define MODE_AP 0
#define MODE_STA 0
#define MODE_AP_STA 1
0: represents canceling this mode 1: represents selecting this mode You can only choose one mode, not at the same time, otherwise the IP address will not be queried