Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 1.95 KB

File metadata and controls

19 lines (14 loc) · 1.95 KB
title
MicroPython / Networking

MicroPython / Networking

新手上路 ?? {: #getting-started }

Wi-Fi ??

  • WiFi - 1. Getting started with MicroPython on the ESP8266 — MicroPython 1.9.4 documentation
    • 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). 剛裝完 firmware 重開,Wi-Fi 會處理 AP (Access Point) 模式,其 ESSID 為 MicroPython-xxxxxx;其中 xxxxxx 是 MAC address 的一部份,例如 MAC: 38:2b:78:05:1a:ff,其 ESSID 固定為 MicroPython-051aff
    • 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. 預設的密碼為 micropythoN (最後一個字母大寫),連到 AP 後該裝置的 IP 為 192.168.4.1。