By default, when you load a new image onto an ESP8266, it is automatically configured to be an Access Point with an SSID like you note.
After a fresh install and boot the device configures itself as a WiFi access point (AP) that you can connect to. The ESSID is of the form MicroPython-xxxxxx where the x’s are replaced with part of the MAC address of your device (so will be the same everytime, and most likely different for all ESP8266 chips). The password for the WiFi is micropythoN (note the upper-case N). Its IP address will be 192.168.4.1 once you connect to its network. WiFi configuration will be discussed in more detail later in the tutorial.
To disable the AP, you will need to run these command at the REPL...
Code: Select all
import network
ap = network.WLAN(network.AP_IF)
ap.active(False)
The change is persistent so you should only have to do it once.