import time
from machine import Pin
time.sleep(0.1) # Wait for USB to become ready
print("Hello, Pi Pico W!")
i = 2
j = 3
k = 0
def wacht():
time.sleep_us(1500)
def wacht_aantal(x):
for i in range(x):
wacht()
def vermenigvuldig(a,b):
tot = a*b
return tot
while True:
print("programma gestart druk CTRL + C om te stoppen.")
k = vermenigvuldig(i,j)
print("result k:", end="\t")
wacht_aantal(1200)
print(k)
wacht()