Files
2018-01-03 14:18:06 +01:00

35 lines
754 B
Python

import machine, network, utime
print("")
print("Starting WiFi ...")
sta_if = network.WLAN(network.STA_IF); sta_if.active(True)
sta_if.connect("mySSID", "wifi_password")
tmo = 50
while not sta_if.isconnected():
utime.sleep_ms(100)
tmo -= 1
if tmo == 0:
sta_if.disconnect()
break
if tmo > 0:
print("WiFi started")
utime.sleep_ms(500)
rtc = machine.RTC()
print("Synchronize time from NTP server ...")
rtc.ntp_sync(server="hr.pool.ntp.org")
tmo = 100
while not rtc.synced():
utime.sleep_ms(100)
tmo -= 1
if tmo == 0:
break
if tmo > 0:
print("Time set")
utime.sleep_ms(500)
t = rtc.now()
utime.strftime("%c")
print("")