#include "button.h"
const int buttonPin = 15;
void setup() {
Serial.begin(115200);
pinMode(2, OUTPUT);
pinMode(buttonPin, INPUT_PULLUP);
if (digitalRead(buttonPin) == LOW) {
digitalWrite(2, HIGH);
} else {
digitalWrite(2, LOW);
}
}
void loop() {
}