- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我目前正在使用 Arduino Uno 进行交通灯项目。当我按下外部开关时,我应该在不同模式之间切换。有 4 种模式,模式 0:所有 LED 熄灭,模式 1:红色 LED 闪烁 1 秒亮 1 秒灭,模式 2:黄色 LED 闪烁 1 秒亮 1 秒灭,但是在模式 3 中:我有电位器相关的延迟。 (最多 10 秒)
我的问题是,如何在按下开关并更改模式后立即停止模式,而无需等待当前模式完成。
// Change the speed with delay using potentiometer,
#include <EEPROM.h>
short rPin = 4; // red led connected to D4
short yPin = 5; // yellow led connected to D5
short gPin = 6; // green led connected to D6
short switchPin = 3; // where the switch is connected
short potPin = 2; // input pin for the PM
short val = 0; // variable to store the value coming from the PM
short timeOut = 300; // switch debounce noise handling,
volatile short last_change_time = 0;
static short dTime = 0; // Static Variable, that holds the last change, effects
// every function.
static short d = 0; // current d value.
static short mode = 0;
// EEPROM current address
int addr = 0;
void pressed() {
int difference = millis()-last_change_time;
if(difference > timeOut || last_change_time == 0)
{
if (mode >= 3){
mode = 0;
}
else {
mode = mode + 1;
}
}
else
{
//Serial.println("NO");
}
last_change_time = millis();
}
void setup()
{
pinMode(rPin, OUTPUT);
pinMode(yPin, OUTPUT);
pinMode(gPin, OUTPUT);
pinMode(switchPin, INPUT);
Serial.begin(9600);
attachInterrupt(1,pressed,FALLING); // digital pin 2 // pressed
}
void loop()
{
if (mode == 3) mode3();
if (mode == 2) mode2();
if (mode == 1) mode1();
if (mode == 0) mode0();
val = analogRead(potPin);
if (val < 170) {
d = 1;
}
else if ( (val >= 170) && (val < 340))
{
d = 2;
}
else if ((val >= 340)&&(val < 510))
{
d = 3;
}
else if ((val >= 510)&&(val < 680))
{
d = 4;
}
else if ((val >= 680) && (val < 850))
{
d = 5;
}
else if ((val >= 850) && (val < 1023))
{
d = 6;
}
}
void serialEvent() {
while (Serial.available()) {
int value = Serial.parseInt();
if (value == 1){
Serial.print("d: ");
Serial.print(d);
Serial.print(" mode: ");
Serial.print(mode);
Serial.print("\n");
}
}
}
void mode0() {
while(mode == 0){
digitalWrite(rPin, LOW);
digitalWrite(yPin, LOW);
digitalWrite(gPin, LOW);
}
}
void mode1() {
while(mode == 1){
digitalWrite(yPin, LOW);
digitalWrite(gPin, LOW);
digitalWrite(rPin, HIGH);
delay(1000);
digitalWrite(rPin, LOW);
delay(1000);
}
}
void mode2() {
while(mode == 2){
digitalWrite(rPin, LOW);
digitalWrite(gPin, LOW);
digitalWrite(yPin, HIGH);
delay(1000);
digitalWrite(yPin, LOW);
delay(1000);
}
}
void mode3(){
interrupts();
while(mode == 3){
digitalWrite(rPin, HIGH);
delay(9*d*1000);
digitalWrite(yPin, HIGH);
delay(d*1000);
digitalWrite(rPin, LOW);
digitalWrite(yPin, LOW);
digitalWrite(gPin, HIGH);
delay(10*d*1000);
digitalWrite(gPin, LOW);
delay((d)*1000);
digitalWrite(gPin, HIGH);
delay(d*1000);
digitalWrite(gPin, LOW);
delay(d*1000);
digitalWrite(yPin, HIGH);
delay(d*1000);
digitalWrite(yPin, LOW);
}
}
最佳答案
想一想:一旦进入“模式”循环之一,您就再也不会检查开关(电位器)的状态。合理? 有限状态机
的建议很好,但为了保持简单,只需将检查开关和设置模式的代码拆分成它自己的函数,然后在每个模式循环中调用它。
void mode0() {
while(mode == 0){
digitalWrite(rPin, LOW);
digitalWrite(yPin, LOW);
digitalWrite(gPin, LOW);
checkSwitch(); // this will potentially change the 'mode' so the while loop with exit if the mode has changed.
}
}
更新:延迟 hack
不是很推荐,但我认为使用delay
方法并且不锁定所有交互的一种方法是将延迟降至最低并检查 for 循环中的输入 - 类似于:
void uglyDelayHack(int delayAmount, int lastMode){
for (int i = 0; i < delayAmount; i++){
delay(1); // 1 millisecond delay
// call to a function that checks for input and changes mode
checkForInput();
// get out of the fake delay if mode has changed
// assumes "mode" is a global variable
if (lastMode != mode) return;
}
}
关于c - Arduino 不等待每个模式(模式)结束我怎样才能重新启动循环?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21070078/
#include using namespace std; class C{ private: int value; public: C(){ value = 0;
这个问题已经有答案了: What is the difference between char a[] = ?string?; and char *p = ?string?;? (8 个回答) 已关闭
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 7 年前。 此帖子已于 8 个月
除了调试之外,是否有任何针对 c、c++ 或 c# 的测试工具,其工作原理类似于将独立函数复制粘贴到某个文本框,然后在其他文本框中输入参数? 最佳答案 也许您会考虑单元测试。我推荐你谷歌测试和谷歌模拟
我想在第二台显示器中移动一个窗口 (HWND)。问题是我尝试了很多方法,例如将分辨率加倍或输入负值,但它永远无法将窗口放在我的第二台显示器上。 关于如何在 C/C++/c# 中执行此操作的任何线索 最
我正在寻找 C/C++/C## 中不同类型 DES 的现有实现。我的运行平台是Windows XP/Vista/7。 我正在尝试编写一个 C# 程序,它将使用 DES 算法进行加密和解密。我需要一些实
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
有没有办法强制将另一个 窗口置于顶部? 不是应用程序的窗口,而是另一个已经在系统上运行的窗口。 (Windows, C/C++/C#) 最佳答案 SetWindowPos(that_window_ha
假设您可以在 C/C++ 或 Csharp 之间做出选择,并且您打算在 Windows 和 Linux 服务器上运行同一服务器的多个实例,那么构建套接字服务器应用程序的最明智选择是什么? 最佳答案 如
你们能告诉我它们之间的区别吗? 顺便问一下,有什么叫C++库或C库的吗? 最佳答案 C++ 标准库 和 C 标准库 是 C++ 和 C 标准定义的库,提供给 C++ 和 C 程序使用。那是那些词的共同
下面的测试代码,我将输出信息放在注释中。我使用的是 gcc 4.8.5 和 Centos 7.2。 #include #include class C { public:
很难说出这里问的是什么。这个问题是含糊的、模糊的、不完整的、过于宽泛的或修辞性的,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开它,visit the help center 。 已关
我的客户将使用名为 annoucement 的结构/类与客户通信。我想我会用 C++ 编写服务器。会有很多不同的类继承annoucement。我的问题是通过网络将这些类发送给客户端 我想也许我应该使用
我在 C# 中有以下函数: public Matrix ConcatDescriptors(IList> descriptors) { int cols = descriptors[0].Co
我有一个项目要编写一个函数来对某些数据执行某些操作。我可以用 C/C++ 编写代码,但我不想与雇主共享该函数的代码。相反,我只想让他有权在他自己的代码中调用该函数。是否可以?我想到了这两种方法 - 在
我使用的是编写糟糕的第 3 方 (C/C++) Api。我从托管代码(C++/CLI)中使用它。有时会出现“访问冲突错误”。这使整个应用程序崩溃。我知道我无法处理这些错误[如果指针访问非法内存位置等,
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 7 年前。
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
我有一些 C 代码,将使用 P/Invoke 从 C# 调用。我正在尝试为这个 C 函数定义一个 C# 等效项。 SomeData* DoSomething(); struct SomeData {
这个问题已经有答案了: Why are these constructs using pre and post-increment undefined behavior? (14 个回答) 已关闭 6
我是一名优秀的程序员,十分优秀!