"""
print("I am ya virtual assistent that has de shinyyy light.")
division=574/2763
print("Ya operation is a result of", division,"bc you want it that way. u happy now?")
if (division<0.3):
    input("are u serious? ._.")
    print("...")
"""
from machine import Pin
from time import sleep

# Define the pin where the LED is connected
v = Pin(5, Pin.OUT)
a = Pin(17, Pin.OUT)
r = Pin(18, Pin.OUT)

while(True):
    v.value(1)
    sleep(2)
    v.value(0)
    for _ in range(6):
        v.value(1)
        sleep(0.5)
        v.value(0)
        sleep(0.5)
    for i in range(6):
        a.value(1)
        sleep(0.5)
        a.value(0)
        sleep(0.5)
    a.value(0)
    r.value(1)
    sleep(3)
    r.value(0)
Loading
esp32-devkit-c-v4