#Lab5_GPIO_Putpull_Button.py

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

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


while True:
    status_button = button.value() # อ่านค่าสถานะ 1/0
    print("สถานะปุ่มกด: ", status_button)

    if status_button == 1:
        led_red.on()
        print("เปิดไฟ ")
    else:
        led_red.off()
        print("ปิดไฟ ")