接外包,有相关需求的可以联系我:Telegram | Email

如何使用ESP32-C3的板载WIFI模块?

该文章创建(更新)于06/4/2022,请注意文章的时效性!

文章目录[隐藏]

拿到手第一件事就是想玩玩板载蓝牙,可惜搞了半天都没有找到参考资料,有也是乱糟糟的感觉,碰巧把WIFI给搞出来了。

前提

  • 注册天气接口账号: https://www.tianqiapi.com/

CODE

  • 注意WIFI和接口信息换成自己的就行
# This file is executed on every boot (including wake-boot from deepsleep)
#import esp
#esp.osdebug(None)
#import webrepl
#webrepl.start()
import socket
import network
from machine import Pin, I2C
import time

led1=Pin(12,Pin.OUT)
led2=Pin(13,Pin.OUT)

def led_random():
    led1.on()
    time.sleep(0.1)
    led1.off()
    led2.on()
    time.sleep(0.1)
    led2.off()

def http_get(url):
    _, _, host, path = url.split('/', 3)
    addr = socket.getaddrinfo(host, 80)[0][-1]
    s = socket.socket()
    s.connect(addr)
    s.send(bytes('GET /%s HTTP/1.0\r\nHost: %s\r\n\r\n' % (path, host), 'utf8'))
    while True:
        data = s.recv(200)
        if data:
            print(data.decode('utf-8'), end='')
        else:
            led_random()
            break
    s.close()
    led1.on()
    led2.on()


def do_connect():
    sta_if = network.WLAN(network.STA_IF)
    if not sta_if.isconnected():
        print('connecting to network...')
        sta_if.active(True)
        sta_if.connect('WifiName', 'WifiPassword')
        while not sta_if.isconnected():
            led_random()
            pass
    print('network config:', sta_if.ifconfig())
    # 注意替换成自己的接口信息
    http_get("http://www.tianqiapi.com/api?version=v9&appid=YourAppId&appsecret=YourSecret&city=%E5%8C%97%E4%BA%AC")

try:
    do_connect()
except Exception as e:
    print(e)

参考


要不赞赏一下?

微信
支付宝
PayPal
Bitcoin

版权声明 | Copyright

除非特别说明,本博客所有作品均采用知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议进行许可。转载请注明转自-
https://www.emperinter.info/2022/06/04/how-to-use-the-on-board-wifi-module-of-esp32-c3/


要不聊聊?

我相信你准备留下的内容是经过思考的!【勾选防爬虫,未勾选无法留言】

*

*



YouTube | B站

微信公众号

👉 NewsLetter ❤️ 邮箱订阅 👈

优惠码

阿里云国际版20美元
Vultr10美元
搬瓦工 | Bandwagon应该有折扣吧?
Just My SocksJMS9272283 【注意手动复制去跳转】
域名 | namesiloemperinter(1美元)
币安 币安