gpt4 book ai didi

C 增加状态的开关计数

转载 作者:行者123 更新时间:2023-11-30 16:56:24 25 4
gpt4 key购买 nike

如何使用 switch 结构增加状态。我需要计数++吗?我将 [((button_in & 0x0040) != 0)] 表达式放置在开关 (expr) 中。这给了我我想要的前两个状态。 (1) 按按钮 1 产生 0001。 (2) 按按钮 2 产生 0010。我不太确定如何编程按按钮 1 两次以产生 0010。我是否在 while 循环内实现计数?我可以使用 while 表达式作为计数吗?我应该在级联中放置另一个 while 循环吗?我想增加我的状态。有 7 个状态:0000、0001(5 美分)、0010(10 美分)、0011(15 美分)、0100(20 美分)、1000(25 美分)、0111(变化)。我更新了我的问题和代码,以尝试清楚地反射(reflect)我的意图。我不是程序员,我的 friend 提到,当我按下按钮时;我应该检查当前状态;然后为此编写我的代码。他还提到了二进制计算器。哪种方法最有效?谢谢

int main() 
{
char A; //placed for switch expression... (not needed?)
int button_in = 0; // button is set for 0 (not-engaged)
DeviceInit(); //set LED1 thru LED4 as digital output
DelayInit(); //Initialize timer for delay
int count; //maybe required for 5 button pushes. Requesting help with this

while (1) //Can I initiate a count? for a second button push?
{
button_in = PORTReadBits(IOPORT_A, BIT_6 | BIT_7); //Button 1 and button 2 defined
if (button_in != 0) //if button is engaged utilize switch statement
{
switch ((button_in & 0x0040) != 0) //if button1 is engaged
{
case 0:
((button_in & 0x0080) != 0); //Statement: Button2 engages case0
PORTWrite(IOPORT_B, BIT_11); //State goes to 010 (BIT_11 lights up).
break;

default: ((button_in & 0x0040) != 0); //Statement: Button1 engages default.
PORTWrite(IOPORT_B, BIT_10); //This is state 0001 (BIT_10) lights up.
break;
}

DelayMs(100); //100millisecond delay for light shine
PORTClearBits(IOPORT_B, BIT_10 | BIT_11 | BIT_12 | BIT_13); //ClearLEDs
}
}
}

最佳答案

首先,在我看来,应该避免执行 switch ((button_in & 0x0040) != 0) ,因为您可以用一个简单的 if 语句替换它,该语句将更常用、更容易阅读。

然后,当谈到您的状态问题时,在这种特殊情况下,您的状态机是

(o)-->(s1)-->(s2)-->(s3)-->(s4)-->(s5)-->(s6)-->((s7))

每次按下按钮 1 时都会发生转换,您只需增加一个计数器来指示您当前所处的状态(如果您想从终端 1 返回到初始状态,则以 8 为模) 。在检查计数器的二进制值后可以确定写入 IOPORT_B 的正确值(在下面的 [1] 中),也可以在输入之前将其存储在数组中您的循环并使用 arr[state] 检索它。选择取决于您的应用程序和值。

int main()
{
int state = 0;
while(1)
{
if (button 1 is pressed)
{
state = (state >= 7) ? 7 : (state + 1);
PORTWrite(IOPORT_B, ...); // [1]
DelayMs(100); // wait
PORTClearBits(IOPORT_B, ...); // Clear what you want to clear
}
}
}

关于C 增加状态的开关计数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39927775/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com