Working with ESP8266 (ESP-07S)

All ESP8266 boards running MicroPython.
Official boards are the Adafruit Huzzah and Feather boards.
Target audience: MicroPython users with an ESP8266 board.
Post Reply
Dezert
Posts: 8
Joined: Sun Dec 30, 2018 1:40 pm

Working with ESP8266 (ESP-07S)

Post by Dezert » Fri Jan 11, 2019 7:14 pm

I have noticed this version of the ESP8266 features an IPEX connector for an antenna. I was wondering if it differs in any other ways from other chips and if there are any issues with it or anything else I should know?

User avatar
mcauser
Posts: 507
Joined: Mon Jun 15, 2015 8:03 am

Re: Working with ESP8266 (ESP-07S)

Post by mcauser » Thu Jan 24, 2019 3:12 am

Should be the same ESP8266EX chip in all of the ESP-xxx modules.
Some are configured with more flash memory.
Some expose additional pins.
Some have a metal can / shielding.
See http://esp8266.net/ for more specifics.

IPEX / U.FL connectors are only rated for a small number of reconnects. Maybe 20-30x reconnections. That's the main concern.
They are also 50 ohms impedance, as with bigger (RP-)SMA connectors.
Short U.FL -> SMA pigtails are fairly common and cheap.

iamneo2416
Posts: 1
Joined: Thu Oct 17, 2019 2:09 pm

Re: Working with ESP8266 (ESP-07S)

Post by iamneo2416 » Thu Oct 17, 2019 2:23 pm

Hi Sir,

Receltly, I also got my ESP07S. originally, I used ESP8266-12E with arduino IDE (Node MCU 1.0-12E setting) to do code, burn and test. Everything was fine. Thing wend weird when I switched to ESP07S. I also use arduino with Node 1.0-12E setting to do code and burn, it can be burned without any error. I also follow ESP07S user manual GPIO and write a LED blink via GOIP, it cames out with error and board keep resetting. I check my code. It is really easy without any extra code below.

Code: Select all

void setup()
{
   pinMode(10, OUTPUT); // GPIO-15 ( according to ESP07S user manual, page 6 )
   //  https://www.rfsolutions.co.uk/downloads/1494602250ESP-07S_Datasheet.pdf
}

void loop()
{
   delay(1000);
   digitalWrite(10, HIGH);
   delay(1000);
   digitalWrite(10, LOW);

}
burn this code and ESP07S keep resetting !!
Did I do anything wrong ? Or I need to do some parameter change for NodeMCU 1.0-12E setup ?

Can you help me with this ??

-ryo

jomas
Posts: 59
Joined: Mon Dec 25, 2017 1:48 pm
Location: Netherlands

Re: Working with ESP8266 (ESP-07S)

Post by jomas » Thu Oct 17, 2019 4:31 pm

This is the Micropython forum. Your code is C.

But your problem is that you should use the GPIOxx names as pin and not the physical pins of the board.

Post Reply