Ameba MicroPython: [RTL8722CSM] [RTL8722DM] Socket - 從HTTP網站獲取信息
材料準備
- Ameba x 1
範例說明
創建socket後,我們可以訪問HTTP網站並從中獲取信息。 在粘貼模式下,將以下代碼複製並粘貼到REPL中。
import socket from wireless import WLAN wifi = WLAN(mode = WLAN.STA) wifi.connect(ssid = "YourWiFiSSID", pswd = "YourPassword") # change the ssid and pswd to yours def http_get(url): _, _, host, path = url.split('/', 3) c = socket.SOCK() # We are visiting MicroPython official website's test page c.connect(host, 80) c.send(bytes('GET /%s HTTP/1.0\r\nHost: %s\r\n\r\n' % (path, host), 'utf8')) while True: data = c.recv(100) if data: print(str(data,'utf8'), end='') else: break http_get('http://micropython.org/ks/test.html')
Realtek IoT/Wi-Fi MCU Solutions . All Rights Reserved. 使用條款