#Lab7_GPIO_MultiButton_multiLED.py

# 1 ประกาศ/เรียกใช้โมดูล
from machine import Pin
import time

# 2 ประกาศตัวแปร/สร้างตัวแปรต่างๆ
led_red = Pin(23, Pin.OUT) # Pin.OUT กำหนดให้ขานี้เป็นขาแสดงผล
led_yellow = Pin(22, Pin.OUT) # Pin.OUT กำหนดให้ขานี้เป็นขาแสดงผล
led_green = Pin(21, Pin.OUT) # Pin.OUT กำหนดให้ขานี้เป็นขาแสดงผล

button_red = Pin(5, Pin.IN) # Pin.IN กำหนดให้ขานี้เป็นขารับค่า
button_yellow = Pin(18, Pin.IN) # Pin.IN กำหนดให้ขานี้เป็นขารับค่า
button_green = Pin(19, Pin.IN) # Pin.IN กำหนดให้ขานี้เป็นขารับค่า

while True:
    status_red = button_red.value() # อ่านค่าสถานะ 1/0
    status_yellow = button_yellow.value() # อ่านค่าสถานะ 1/0
    status_green = button_green.value() # อ่านค่าสถานะ 1/0
    print("สถานะปุ่มกดสีแดง: ", status_red)
    print("สถานะปุ่มกดสีเหลือง: ", status_yellow)
    print("สถานะปุ่มกดสีเขียว: ", status_green)

    if status_red == 1:
        led_red.on()
        led_yellow.off()
        led_green.off()
    elif status_yellow == 1:
        led_red.off()
        led_yellow.on()
        led_green.off()
    elif status_green == 1:
        led_red.off()
        led_yellow.off()
        led_green.on()
    else:
        led_red.off()
        led_yellow.off()
        led_green.off()
        #print("ปิดไฟ ")