本站改版新增arduino频道

Micropython
Arduino

micropython esp32 开发板更新系统时间


这里只是核心代码,wifi联网部分可以在本站查询获取。

import utime

import time

import urequest

from machine import RTC


def WebTime():

    print('sync time')

    global rtc

    try:

        hea = {'User-Agent': 'Mozilla/5.0'}

        url = r'http://time1909.beijing-time.org/time.asp'

        r = requests.get(url, headers=hea).text.split('\r')

        temp = []

        i = 1

        while i < len(r):

            temp.append(int(r[i].split("=")[-1][:-1]))

            i += 1

        temp.append(0)

        rtc.datetime(temp)

        print("web time")

    except Exception as e:

        print(e)

        return False

    else:

        return True



推荐分享
图文皆来源于网络,内容仅做公益性分享,版权归原作者所有,如有侵权请告知删除!
 

Copyright © 2014 ESP56.com All Rights Reserved
晋ICP备14006235号-22 晋公网安备14108102001165号

执行时间: 0.0095028877258301 seconds