mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-07-26 10:38:41 +00:00
9c88d1fab4
Signed-off-by: Ron Evans <ron@hybridgroup.com>
112 lines
2.8 KiB
Go
112 lines
2.8 KiB
Go
package espat
|
|
|
|
// Basic AT commands
|
|
const (
|
|
// Test that the device is working.
|
|
Test = ""
|
|
|
|
// Restart module
|
|
Restart = "+RST"
|
|
|
|
// Version show info about the current software version.
|
|
Version = "+GMR"
|
|
|
|
// Enter deep-sleep mode
|
|
Sleep = "+GSLP"
|
|
|
|
// Configure echo.
|
|
EchoConfig = "E"
|
|
|
|
// EchoConfigOn
|
|
EchoConfigOn = EchoConfig + "1"
|
|
|
|
// EchoConfigOff
|
|
EchoConfigOff = EchoConfig + "0"
|
|
|
|
// Configure UART
|
|
UARTConfig = "+UART"
|
|
)
|
|
|
|
// WiFi commands.
|
|
const (
|
|
// WiFi mode (sta/AP/sta+AP)
|
|
WifiMode = "+CWMODE"
|
|
|
|
// Connect to an access point.
|
|
ConnectAP = "+CWJAP"
|
|
|
|
// List available AP's
|
|
ListAP = "+CWLAP"
|
|
|
|
// Disconnect from the current AP
|
|
Disconnect = "+CWQAP"
|
|
|
|
// Set softAP configuration. This also activates the ESP8266/ESP32 to act as an access point.
|
|
// On the ESP8266 the settings will not be saved in flash memory, so they will be forgotten on next reset.
|
|
// On the ESP32 the settings WILL be saved in flash memory, so they will be used on next reset.
|
|
SoftAPConfigCurrent = "+CWSAP"
|
|
|
|
// Set softAP configuration. This also activates the ESP8266/ESP32 to act as an access point.
|
|
// On the ESP8266 the settings will not be saved in flash memory, so they will be forgotten on next reset.
|
|
// On the ESP32 the settings WILL be saved in flash memory, so they will be used on next reset.
|
|
SoftAPConfigFlash = "+CWSAP"
|
|
|
|
// List station IP's connected to softAP
|
|
ListConnectedIP = "+CWLIF"
|
|
|
|
// Enable/disable DHCP
|
|
DHCPConfig = "+CWDHCP"
|
|
|
|
// Set MAC address of station
|
|
SetStationMACAddress = "+CIPSTAMAC"
|
|
|
|
// Set MAC address of softAP
|
|
SetAPMACAddress = "+CIPAPMAC"
|
|
|
|
// Set IP address of ESP8266/ESP32 station
|
|
SetStationIP = "+CIPSTA"
|
|
|
|
// Set IP address of ESP8266/ESP32 when acting as access point.
|
|
// On the ESP8266 the IP address will not be saved in flash memory, so it will be forgotten on next reset.
|
|
// On the ESP32 the IP address WILL be saved in flash memory, so it will be used on next reset.
|
|
SetSoftAPIPCurrent = "+CIPAP"
|
|
|
|
// Set IP address of ESP8266/ESP32 when acting as access point.
|
|
// On the ESP8266 the IP address will not be saved in flash memory, so it will be forgotten on next reset.
|
|
// On the ESP32 the IP address WILL be saved in flash memory, so it will be used on next reset.
|
|
SetSoftAPIPFlash = "+CIPAP"
|
|
)
|
|
|
|
// TCP/IP commands
|
|
const (
|
|
// Get connection status
|
|
TCPStatus = "+CIPSTATUS"
|
|
|
|
// Establish TCP connection or register UDP port
|
|
TCPConnect = "+CIPSTART"
|
|
|
|
// DNS Lookup
|
|
TCPDNSLookup = "+CIPDOMAIN"
|
|
|
|
// Send Data
|
|
TCPSend = "+CIPSEND"
|
|
|
|
// Close TCP/UDP connection
|
|
TCPClose = "+CIPCLOSE"
|
|
|
|
// Get local IP address
|
|
GetLocalIP = "+CIFSR"
|
|
|
|
// Set multiple connections mode
|
|
TCPMultiple = "+CIPMUX"
|
|
|
|
// Configure as server
|
|
ServerConfig = "+CIPSERVER"
|
|
|
|
// Set transmission mode
|
|
TransmissionMode = "+CIPMODE"
|
|
|
|
// Set timeout when ESP8266/ESP32 runs as TCP server
|
|
SetServerTimeout = "+CIPSTO"
|
|
)
|