Arduino 的 void loop() 函数没有循环

Arduino the void loop() function isn't looping

我是 Arduino 的新手,我一开始写了一段代码,应该可以在 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[2] = {"App selector","Credits"};
int CurrentApp = 0;
int Yaxis = 1;
int Xaxis = 1;
int HiCh = 0;
int button;
int JXaxis;
int JYaxis;


void Credits() {  //          CREDITS
  Serial.print("- Credits app loading \n");
  lcd.clear();
  lcd.setCursor(3,0);
  lcd.print("Credits app");
  lcd.setCursor(0,1);
  Serial.print("- Credits app loaded \n");

}

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);
  // Print a message to the LCD.
  lcd.print("App selector");
  Serial.print("- App selector menu \n");
  pinMode(SW_pin, INPUT);
  digitalWrite(SW_pin, HIGH);
  lcd.setCursor(0,1);
  lcd.print(Apps[0]);
}


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


void loop() {  //          LOOP
  while (none == 0) {
    button = digitalRead(SW_pin);
    int JYaxis = analogRead(Y_pin) / 128;
    int JXaxis = analogRead(X_pin) / 128;
    if (CurrentApp == 0) {
      for (;;) {
        if (button == 0) {
          SelectApp();
        }
        if (JYaxis <= 1) {
          if (HiCh != 0) {
            HiCh = HiCh - 1;
            delay(300);
          }
        }
        if (JYaxis >= 7) {
          HiCh = HiCh + 1;
          delay(300);
        }
      }
    }
  }
}

我只使用一个摇杆作为控制器,我有一块 Arduino UNO R3 开发板

我知道很多其他人都写过这个问题,很多人也解决了这个问题,但我在我的代码中找不到问题...

我确定是脚本执行过程中的一个错误阻止了其余部分,但我找不到它在哪里。

提前致谢! 如果您需要任何规格,请向我询问,我会尽力回答。

该代码有几个问题。

  1. 在 loop() 函数中,您通常不会创建无限循环,您只需将 one 运行 放在循环中。即去掉while.

  2. 另一方面,使用 delay() 不是一个好主意,因为处理循环将停在那里并在指定时间后继续。使用定时器中断可以更好地实现您尝试实现的行为。