12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- void customButtonOnPress(){
- digitalWrite(PWR_BTN, HIGH);
- digitalWrite(BTN_LED, LOW);
- }
- void customButtonOnRelease(){
- digitalWrite(PWR_BTN, LOW);
- digitalWrite(BTN_LED, HIGH);
- }
- void handleCustomButtonEvents(){
-
- int btnPinState = digitalRead(BTN_INPUT);
- if (btnPinState == HIGH && customBtnPressed == true){
-
- customBtnPressed = false;
- customButtonOnRelease();
- }else if (btnPinState == LOW && customBtnPressed == false){
-
- customBtnPressed = true;
- customButtonOnPress();
- }
- }
- void updateFrontPanelLEDStatus() {
- val = digitalRead(HDD_LED);
- hddLedState = (val == LOW);
- val = digitalRead(PWR_LED);
- pwrLedState = (val == LOW);
- }
- void pressPowerButton() {
- digitalWrite(PWR_BTN, HIGH);
- delay(1000);
- digitalWrite(PWR_BTN, LOW);
- }
- void pressResetButton() {
- digitalWrite(RST_BTN, HIGH);
- delay(1000);
- digitalWrite(RST_BTN, LOW);
- }
|