Untitled

Anonymous
python
09/18/2024 11:27 PM
456 B
22
Indexable
import os; print(os.uname())

import machine
import time
import network
from Wifi import (connect)
from Time import (Time)

led = machine.Pin("LED", machine.Pin.OUT)

try:
    ip = connect()
except KeyboardInterrupt:
    machine.reset()

while True:
    print(Clock)
    led.value(1)
    time.sleep(0.2)
    led.value(0)
    time.sleep(0.2) 
Editor is loading...
Leave a Comment