加载函数时出现问题

Problems while loading a function

我尝试在 "AppSelect" 函数中加载 "BrainTest" 函数时遇到问题。

我创建了一个方法,当发生加载错误时,在串行监视器和 LCD 屏幕上通知我。

#include <LiquidCrystal.h>

// Arduino pins number
const int SW_pin = 2; // digital pin connected to switch output
const int X_pin = 0; // analog pin connected to X output
const int Y_pin = 1; // analog pin connected to Y output
const int LCD_RS = 7;
const int LCD_Enable = 8;
const int LCD_D4 = 9;
const int LCD_D5 = 10;
const int LCD_D6 = 11;
const int LCD_D7 = 12;
LiquidCrystal lcd(LCD_RS, LCD_Enable, LCD_D4, LCD_D5, LCD_D6, LCD_D7);

// Basic vars
int none = 0;
String Apps[3] = {"App select","Credits","Test your brain"};
int CurrentApp = 0;
int Yaxis = 1;
int Xaxis = 1;
int HiCh = 0;
int button;
int JXaxis;
int JYaxis;


void AppSelect() {  //          APPSELECT
  lcd.setCursor(0,0);
  lcd.print("App select menu");
  lcd.setCursor(0,1);
  lcd.print(Apps[HiCh]);
  if (button == 0) {
    SelectApp();
  }
  if (JYaxis <= 2) {
    if (HiCh != 0) {
      HiCh = HiCh - 1;
      lcd.clear();
      lcd.setCursor(0,1);
      lcd.print(Apps[HiCh]);
      delay(300);
    }
  }
  if (JYaxis >= 7) {
    if (HiCh != 1) {
      HiCh = HiCh + 1;
      lcd.clear();
      lcd.setCursor(0,1);
      lcd.print(Apps[HiCh]);
      delay(300);
    }
  }
}

void Credits() {  //          CREDITS
  Serial.print("- Credits app loading \n");
  lcd.clear();
  lcd.setCursor(9,0);
  lcd.print("Credits");
  lcd.setCursor(0,1);
  lcd.print("Made by Alexandre Bergeron");
  Serial.print("- Credits app loaded \n");
  delay(1300);
  lcd.scrollDisplayLeft();
  delay(600);
  lcd.scrollDisplayLeft();
  delay(600);
  lcd.scrollDisplayLeft();
  delay(600);
  lcd.scrollDisplayLeft();
  delay(600);
  lcd.scrollDisplayLeft();
  delay(600);
  lcd.scrollDisplayLeft();
  delay(600);
  lcd.scrollDisplayLeft();
  delay(600);
  lcd.scrollDisplayLeft();
  delay(600);
  lcd.scrollDisplayLeft();
  delay(600);
  lcd.scrollDisplayLeft();
  delay(600);
  lcd.scrollDisplayLeft();
  delay(600);
  lcd.scrollDisplayLeft();
  delay(1500);
  CurrentApp = 0;
  lcd.clear();
}


void BrainTest() {  //          BRAINTEST
  lcd.setCursor(0,0);
  lcd.print("Are you ready?");
  lcd.setCursor(0,1);
  lcd.print("Yes     No");
}


void setup() {  //          SETUP
  Serial.begin(9600);
  Serial.print("[2J");
  Serial.print("  Serial Monitor opened \n \n");
  // set up the LCD's number of columns and rows:
  lcd.begin(16, 2);
  Serial.print("- App selector menu \n");
  pinMode(SW_pin, INPUT);
  digitalWrite(SW_pin, HIGH);
}


void SelectApp() {  //          SELECTAPP
  switch (HiCh) {
    case (0):
      CurrentApp = 0;
      AppSelect();
    case (1):
      CurrentApp = 1;
      Credits();
      break;
    case (2):
      CurrentApp = 2;
      BrainTest();
    default:
      lcd.clear();
      lcd.setCursor(0,0);
      lcd.print("Error");
      Serial.print("- App loading error \n");
  }
}


void loop() {  //          LOOP
  button = digitalRead(SW_pin);
  int JYaxis = analogRead(Y_pin) / 128;
  int JXaxis = analogRead(X_pin) / 128;
  if (CurrentApp == 0) { 
    lcd.setCursor(0,0);
    lcd.print(" App select menu");
    lcd.setCursor(0,1);
    lcd.print(Apps[HiCh]);
    if (button == 0) {
      SelectApp();
    }
    if (JYaxis >= 7) {
      if (HiCh != 0) {
        HiCh = HiCh - 1;
        lcd.clear();
        lcd.setCursor(0,0);
        lcd.print("App select menu");
        lcd.setCursor(0,1);
        lcd.print(Apps[HiCh]);
        delay(300);
      }
    }    
    if (JYaxis <= 2) {
      if (HiCh != 2) {
        HiCh = HiCh + 1;
        lcd.clear();
        lcd.setCursor(0,0);
        lcd.print("App select menu");
        lcd.setCursor(0,1);
        lcd.print(Apps[HiCh]);
        delay(300);
      }
    }
  }
}

如果您需要任何其他详细信息,请问我,我会为您澄清。

不知道我的题名对不对,如果你觉得我可以改进,你可以告诉我,我会改的。

如果您没有在案例中使用 break,它将进入下一个案例。这是 C/C++ switch 语句的基本设计。

您可以了解有关 C++ switch 语句的更多信息 here