Home > Wireless Module > Other > ESP8266 ESP-01 Remote Serial Port WIFI Transceiver Wireless Module AP+STA Wifi Board for IOT Smart Home

ESP8266 ESP-01 Remote Serial Port WIFI Transceiver Wireless Module AP+STA Wifi Board for IOT Smart Home

4928
5 3
$3.19 $2.23
Quantity5+
Price$2.35
Contact us for wholesale price
Time Remaining:
- OR - - OR - Add to Wish List

ESP8266 ESP-01 Remote Wireless Module WIFI to UART Module

The advantage of modules:

  1. The smallest by 11 * 10 mm or so,Embedded in any convenient products
  2. Powerful internal run LWIP protocol
  3. Supports three modes: AP, STA and AP + STA coexistence pattern
  4. Improve the clean efficiency of the AT command, let you develop more simple.

Please download the material HERE

enter image description here

enter image description here

enter image description here

enter image description here

AT+CWQAP

AT+CWQAP;Exit links with AP

Testing Instruction:

      AT+CWQAP=?

response 

OK

illustrated 

None

execute instruction:

      AT+CWQAP

response 

OK

illustrated 

None

 

AT+CWSAP

AT+CWSAP Setting up the AP mode parameters

test instruction

response 

 

illustrated 

 

Queries instruction:

AT+CWSAP?

response 

Returns the current AP parameters

+CWSAP;<ssid>,<pwd>,<chl>,<ecn>

illustrated 

None

setup instruction

AP+CWSAP=

<ssid>,<pwd>,<chl>,<ecn>

response 

OK

Or

EPPOR

illustrated 

 instruction parameters

<ssid>string parameterAccess Point Name.

<pwd>string parameterPassword up to 64 bytes ASCII

<chl>Channel Number

<ecn>cipher mode

0   OPEN

                1   WEP

     2   WPA_PSK

      3   WPA2_PSK

            4   WPA_WPA2_PSK

 

 

 

 

illustrated

This set of instructions is only effective after AP mode to open

 

 TCP/IP toolkit  AT command

Command

Description

AT+CIPSTATUS

Get the connection status

AT+CIPSTART

To establish a TCP connection or registered UDP port number

AT+CIPSEND

send  data

AT+CIPCLOSE

Close TCP or UDP

AT+CIFSR

Get the local IP address

AT+CIPMUX

Start multiple connections

AT+CIPSERVER

Configured as a server

 

AT+CIPSTATUS

AT+CIPSTATUS Get the connection status

Testing Instruction

response 

OK

illustrated 

None

Executes Instruction

AT+CIPSTATUS

response 

Returns the current module connection state and connection parameters

STATUS:<stat>

+CIPSTATUS;<id>,<type>,<addr>,<port>,<stat>

OK

 

illustrated 

Response Value Description:

<id> connection id number 0-4

<type>string parameter,type TCP or UDP

<addr>string parameter,IP address

<port>Port Number

 

 

AT+CIPSTART

AT+CIPSTART To establish a TCP connection or registered UDP port number

Testing Instruction

AT+CIPSTART=?

 

response 

+CIPSTART:(<type>A list of values ),(<IP address>Range),(<port>Range)

OK

illustrated 

None

Set command

  1. single way connection

(+CIPMUX=0)

AT+CIPSTART=

<type>,<addr>,<port>

 

  1. Multiple connections

(+CIPMUX=1)

AT+CIPSTART=

<id><type>,<addr>,

<port>

 

 

 

 

response 

OK-Format correct and the connection is successful

Or

ERROR- Failure

Or

ALREAY CONNECT,Connection has been

 

 

illustrated

Command parameters:

<id>0-4 connection id number

<type>string parameter,Indicates that the connection type,TCP established  tcp connection .

udp established UDP connection .

<addr>string parameter,The remote server IP address.

<port>Remote server port number

 

illustrated

No. 0 connections can dient or server connections, the other can only be used to connect to a remote server id

 

AT+CIPSEND

AT+CIPSEND send  data

Testing Instruction:

AT+CIPSEND=?

response 

OK

illustrated 

None

setup instructions:

  1. single way connection

(+CIPMUX=0)

AT+CIPSTART=<lenght>

 

 

 

 

 

2)Multiple connections

(+CIPMUX=1)

AT+CIPSTART=

<id>,<lenght>

 

 

 

response 

Response Returns the specified length of data.

After receiving the instruction to wrap return ">", and then begin to receive serial data, send data when the data length full lenght.

If you do not establish a connection or connection is disconnected, return ERROR.

 if the data is sent successfully,return to SEND OK.

illustrated 

 instruction  parameters:

<id>Required for the transport connection id number.

<lenght>numeric argument,Indicates that the length of the send data

 

 

 

AT+CIPCLOSE

AT+CIPCLOSE Close TCP or UDP

Testing Instruction:

     AT+CIPCLOSE=?

response 

OK

illustrated 

None

Set command:

Multiple connections

AT+CIPCLOSE=<id>

 

response 

If the input is correct, return OK

Without the connection, returns the Link is not

If you turn off No. 0 connection, and the connection for the server, it returns Cant close (closed 0 need to restart the server connection)

illustrated 

command parameter:

<id>Need to close the connection id

Executes Instruction:

single way connection

AT+CIPCLOSE

response 

If the input is correct, return OK

Without the connection, returns the

ERROR

If you want to shut down the server, it returns we must restart (connection need to restart)

illustrated 

None

illustrated 

Closed state is unlink

 

 AT+CIFSR

AT+CIFSR Get the local IP address

Testing Instruction:

AT+CIFSR=?

response

OK

illustrated

None

Executes Instruction:

AT+CIFSR

 

response

+CIFSR:<IP address>

OK

Or

ERROR

illustrated

return response:

<IP address>-The current IP address of the machine(station)

 

AT+CIPMUX

AT+CIPMUX Start multiple connections

query directives:

      AT+CIPMUX?

 

 

response

+CIPMUX:<mode>

OK

illustrated

None

Set command:

AT+CIPMUX=<mode>

 

response

OK

If you already are connected, it returns

Link is builded

 

 

illustrated

command parameter

<mode>

0  single way connection mode

1  Multiple connection mode

 

Executes Instruction

response

None

illustrated

None

 

AT+CIPSERVER

AT+CIPSERVER Configured as a server

Executes Instruction

AT+CIPSERVER=

<mode>[,<port>]

 

 

response

Automatically create a server monitor server after opening

OK

If 0 connection being used, it returns the Link is builded

Close need to restart the server

 

illustrated

command parameter:

<mode>

0  Close the server mode

1  Open the server mode

<Port> port number, the default value is 333

 

AT command classification

Classification

instruction format

 command function

TEST command

AT+<X>=?

This command is used to query or set command to set the parameters of the internal procedures and its value range.

Query command

AT+<X>?

This command returns the current value of the parameter.

Set  command

AT+<X>=<...>

This command is used to set the user custom parameter values.

 Execute Command

AT+<X>

This command is used by the module to perform internal program control functions varying parameters immutable.

Basic AT command

Command

Description

AT+RST

Restart the module

 

AT+RST

AT+RST Restart the module

Execute Command

 

AT+RST

response

OK

illustrated

None

 

Video Demo:

Quantity5+
Price$2.35

Pics & Videos

Tested by Our Partner PDAControl:

Feedback

By
Rating: [5] 5 of 5 Stars! Date Added: 2017-07-05 21:10:56
Very well protected packaging,works very well with my arduino uno.
By
Rating: [5] 5 of 5 Stars! Date Added: 2015-07-01 07:00:26
Пришёл в Латвию за две недели.Рабочий. https://drive.google.com/file/d/0B_ojaSpCbPXYSGV4X0d6UmJpR0U/view?usp=sharing
By
Rating: [5] 5 of 5 Stars! Date Added: 2015-05-26 04:15:38
One of the great product for IOT, which gives huge opportunity to explore many things, This tiny module less than $5 module can be used as a standalone device for controlling devices without going for a microcontroller to support it, thanks for the lua firmware, I bought this product without any knowledge about it , icstation provides the needed materials to get start with this prodcut, I am a returning customer for icstation, you guys doing an awesome job, Thanks for the fastest shipping and attend all my queries . I would recommend my fellow electronic lovers to take a look into your site

ICStation doesn't accept any form of pay on delivery. Items used to be shipped after payment. Below are the payment methods we can accept at the moment:

1) Paypal Payment

PayPal is a secure and trusted payment processing service that allows you to shop online. PayPal can be used at icstation.com to purchase items by Credit Card (Visa, MasterCard, Discover, and American Express), Debit Card , or E-check (i.e. using your regular Bank Account). 



We are PayPal Verified 

 

2)  Bank Transfer / Wire Transfer / T/T

 

Bank Transfer / Wire Transfer / T/T payment methods are accepted for orders which the total price is up to US$300. The bank will charge about US$50 for the transfer fee if we do the payment in these ways. Feel free to contact us for bank payment details if you need pay via bank.

For other payment method, please contact us at orders@icstation-team.com for more details.

Customers who bought this product also purchased

DC-DC 80W 5.1A Adjustable Automatic Buck Boost Power Supply Module CCCV Step UP DOWN Voltage Converter Solar Charging
$15.39
$21.99
30
LCR-T4 Transistor Tester ESR Resistor Detector Capacitor Instrument Multifunction Detector W/ Acrylic Shell 12864 LCD Display
$13.99
$19.99

Sold Out

30
150W Electronic Load Tester 2.4in TFT LCD Display Aging Discharger Battery Capacity Tester
$34.99
$49.99

Sold Out

30
DIY Kit LM358 Breathing Lamp Blue LED Electronic Soldering Practice Kits
$1.81
$2.59
30
DIY Kit Voice Control Red LED Rhythm Lamp 5pcs LED Lamp Analog Circuit Electronic Soldering Practice Kits for Beginners
$1.95
$2.79

Sold Out

30
DIY Kit Bluetooth-Compatible Speaker with LED Flashing Light, Home Stero Sound Amplifier Kits for Learning Electronic Soldering
$16.09
$22.99
30
DIY 6 Bits C51 Digital Electronic Clock Red LED AT89C2051 Chip DIY Soldering Practice Learning Kits
$6.29
$8.99
30
DIY Kits HIFI 6J1 Electronic Tube Hybrid Power Amplifier Board Headphones Power Amplifiers LM1875T DIY Amplifier Module 20W
$13.29
$18.99
30
DIY Kit RGB LED Flashing Controller SMD Component Soldering Practice Electronic Kits
$3.49
$4.99
31
RGB 4Bit Digital Electronic Clock DIY Kit 5V Temperature Alarm 12/24H Time Date Home Clock
$9.09
$12.99
30
DC 3.6-5V LED Light Control Module Bluetooth-compatible RGB Light Lamp Control Board Module for iOS/Android 4.2 Smart Home
$8.39
$11.99
30
DIY Kit Analog Remote Fan Controller Electronic Suite
$9.09
$12.99
30

Your Recent History

ESP8266 ESP-01 Remote Serial Port WIFI Transceiver Wireless Module AP+STA Wifi Board for IOT Smart Home
$2.23
$3.19
30