本站改版新增arduino频道

Micropython
Arduino

micropython esp32 获取开发板时间


def get_time():
    import time
    now = time.localtime(time.time())
    return 'Current pyboard time is {:04d}-{:02d}-{:02d} {:02d}:{:02d}:{:02d}'.format(
            now[0], now[1], now[2], now[3], now[4], now[5])

print(get_time())



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

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

执行时间: 0.0095629692077637 seconds