#define buttonPin01 11
#define buttonPin02 12
void setup() {
  // กำหนดขาใช้งานเป็นแบบอินพุตแบบ PULLDOWN
  pinMode(buttonPin01, INPUT);
  // กำหนดขาใช้งานเป็นแบบอินพุตแบบ PULLUP
  pinMode(buttonPin02, INPUT_PULLUP);
  Serial.begin(115200);
}

void loop() {
  // สร้างตัวแปรสำหรับไว้รับค่าจากการกด Switch
  byte pin01 = digitalRead(buttonPin01);
  Serial.print("Value of PIN11 : ");
  Serial.println(pin01);
  byte pin02 = digitalRead(buttonPin02);
  Serial.print("Value of PIN12 : ");
  Serial.println(pin02);
  delay(50);
}