這節(jié)讓esp32通過wifi自己建立一個web server,就是自己建立一個網(wǎng)站服務器,就會有一個ip地址,在手機或電腦和esp32連接同一個wifi的情況下,讓手機或電腦登錄那個ip地址的網(wǎng)站就可以給esp32發(fā)送相應信息,esp32收到不同的信息執(zhí)行不同操作,本代碼就是實現(xiàn)控制開燈與關(guān)燈。
手機有一個快捷指令的應用,通過那里的設(shè)置可以改變siri的功能,選擇添加項目,選文稿→文本,輸入網(wǎng)站地址,如http://192.168.1.7/?led=on,再添加網(wǎng)絡(luò)→獲取URL內(nèi)容,就可以通過siri控制esp32上的燈的亮滅。
try:
import usocket as socket
except:
import socket
from machine import Pin
import network
'''
import esp
esp.osdebug(None)
'''
import gc
gc.collect()
ssid = '***' #wifi名稱
password = '***' #wifi密碼
station = network.WLAN(network.STA_IF)
station.active(True)
station.connect(ssid,password)
while station.isconnected() == False:
pass
print('Connection successful')
print(station.ifconfig())
led = Pin(12,Pin.OUT)
def web_page():
html = """<html><head><meta name="viewport"
content="width=device-width, initial-scale=1"></head>
<body><h1>Ojay Server</h1><a
href="?led=on"><button>ON</button></a>
<a
href="?led=off"><button>OFF</button></a></body><html>"""
return html
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.bind(('',80))
s.listen(5)
while True:
conn, addr = s.accept()
print('Got a connection from %s' % str(addr))
request = conn.recv(1024)
request = str(request)
print('Content = %s' % request)
led_on = request.find('/?led=on')
led_off = request.find('/?led=off')
if led_on == 6:
print('LED ON')
led.value(1)
if led_off == 6:
print('LED OFF')
led.value(0)
response = web_page()
conn.send('HTTP/1.1 200 OKn')
conn.send('Content-Type: text/htmln')
conn.send('Connection: closenn')
conn.send('HTTP/1.1 200 OKn')
conn.sendall(response)
conn.close()
代碼改一個wifi的名稱和密碼就可以用了,運行后upycraft會打印出當前的ip地址,可以試著電腦登上該ip地址,你會發(fā)現(xiàn)可以在網(wǎng)頁上控制燈的開關(guān),那你已經(jīng)成功了!改一下siri即可。
附上其他文章的鏈接:
《吃白菜一樣用micropython玩esp32(一)—— 搭建環(huán)境》
《吃白菜一樣用micropython玩esp32(二)—— 點燈大師》
《吃白菜一樣用micropython玩esp32(三)—— 觸摸按鍵、ADC》