feat: added blink indicator to indicate main.py

This commit is contained in:
Elias Renman
2023-05-22 18:48:16 +02:00
parent 7cb963bb24
commit 323edfacf7

View File

@@ -1,9 +1,14 @@
import socket
from utime import sleep_ms
from machine import Pin
from config import ssid, password
led = Pin("LED", Pin.OUT)
led.value(1)
sleep_ms(200)
led.value(0)
print("Successfully started pico...")
addr = socket.getaddrinfo('0.0.0.0', 80)[0][-1]