Skip to content

Latest commit

 

History

History
105 lines (59 loc) · 5.05 KB

esp8266_wifi_module.md

File metadata and controls

105 lines (59 loc) · 5.05 KB

ESP8266 WiFi 模块

ESP8266 是一款低成本且易于使用的 Wi-Fi 模块,具有完整的 TCP/IP 协议栈和微控制器功能。 It can be used with any Pixhawk series controller.

:::tip ESP8266 is the defacto default WiFi module for use with Pixracer (and is usually bundled with it). :::

购买地点

The module is readily available. A few vendors are listed below.

模块设置

The ESP8266 firmware has these factory settings:

  • SSID: PixRacer
  • Password: pixracer
  • WiFi Channel: 11
  • UART speed 921600

从源文件编译

The firmware repository contains instructions and all the tools needed for building and flashing the firmware.

预编译二进制文件

MavLink ESP8266 Firmware V 1.2.2

更新固件

If you have firmware 1.0.4 or greater installed, you can do the update using the ESP's Over The Air Update feature. Just connect to its AP WiFi link and browse to: http://192.168.4.1/update. You can then select the firmware file you downloaded above and upload it to the WiFi Module.

Flashing the ESP8266 Firmware

Before flashing, make sure you boot the ESP8266 in Flash Mode as described below. If you cloned the MavESP8266 repository, you can build and flash the firmware using the provided PlatformIO tools and environment. If you downloaded the pre-built firmware above, download the esptool utility and use the command line below:

esptool.py --baud 921600 --port /dev/your_serial_port write_flash 0x00000 firmware_xxxxx.bin

Where:

  • firmware_xxxxx.bin 是您上面下载的固件
  • your_serial_port 是ESP 8266连接到的串行端口的名称 (例如 /dev/cu.usbmodem) 。

下载固件接线

:::warning ESP8266 must be powered with 3.3 volts only. :::

There are various methods for setting the ESP8266 into Flash Mode but not all USB/UART adapters provide all the necessary pins for automatic mode switching. In order to boot the ESP8266 in Flash Mode, the GPIO-0 pin must be set low (GND) and the CH_PD pin must be set high (VCC). This is what my own setup looks like:

esp8266 flashing rig

I built a cable where RX, TX, VCC, and GND are properly wired directly from the FTDI adapter to the ESP8266. From the ESP8266, I left two wires connected to GPIO-0 and CH_PD free so I can boot it either normally or in flash mode by connecting them to GND and VCC respectively.

ESP8266 (ESP-01) 引脚图

esp8266 wifi module pinout

Flashing Diagram using an FTDI USB/UART Adapter

esp8266 flashing

Pixhawk/PX4 Setup & Configuration

:::tip If using PX4 1.8.2 (and earlier) you should connect the ESP8266 to TELEM2 and configure the port by setting the parameter SYS_COMPANION to 1921600 (remember to reboot after setting the parameter). The following instructions assume you are using PX4 versions after 1.8.2 :::

Connect your ESP8266 to your Pixhawk-series flight controller (e.g. Pixracer) on any free UART.

Connect the flight controller to your ground station via USB (as WiFi is not yet fully set up).

Using QGroundControl:

Once the firmware (port) is set up you can remove the physical USB connection between the ground station and the vehicle.

Connect via ESP8266 to QGC

On your wifi-enabled QGroundControl ground station computer/tablet, find and connect to the open wireless network for your ESP8266.

  • By default the ESP8266 network is named PixRacer and the default password is pixracer.

  • On Windows, the connection settings will look like this:

    Windows Network Setup: Connection

    Windows Network Setup: Security

QGC automatically starts its UDP link on boot. Once your computer/tablet is connected to the PixRacer WiFi Access Point, it will automatically make the connection.

You should now see HUD movement on your QGC computer via wireless link and be able to view the summary panel for the ESP8266 WiFi Bridge (as shown below).

QGC Summary showing Wifi Bridge

:::tip If you have any problem connecting, see QGC Installation/Configuration Problems. :::