print("This program is to make:\n ")
print("\t a red LED turn ON for the wrong guessing\n")
print("\t a blue LED turn ON for the correct guessing\n")
print("Remarks: No limit on guessing trials\n\n")
from machine import Pin
from utime import sleep #utime since upython is used
led_red = Pin(14, Pin.OUT) #Connect the LED to GPIO 14
led_blue = Pin(12, Pin.OUT) #Connect the LED to GPIO 12
target = 33
while True: #forever loop
#obtain input from the user:
value = int(input("Enter an interger between 1 and 100: "))
if value > target:
print("WRONG!", value, "is high/too high")
for u in range(3):
led_red.on()
sleep(0.5)
led_red.off()
sleep(0.5)
led_blue.off()
elif int(value) < target:
print("WRONG!", value, "is low/too low")
for u in range(3):
led_red.on()
sleep(0.5)
led_red.off()
sleep(0.5)
led_blue.off()
else:
print("Perfect! Kudos!")
for b in range(3):
led_blue.on()
sleep(0.5)
led_blue.off()
sleep(0.5)
led_red.off()
break