我试图捕捉一个数字的旋转速度。我有一个程序,计数器从 0 开始。
每次用户单击“加 1”按钮时。它将计数器增加 1。
计数器最大值为 255。在 255 之后,它返回到 0。
现在我想显示从 0 增加到最大值并返回到 0 所需的秒数。完整旋转的时间。用户单击按钮的速度会有所不同。
我需要知道的是如何为此使用计时器?该程序完成只是我需要编码的数字的完整旋转之间的计时器。
我在用着
#include <time.h> //* clock_t, clock, CLOCKS_PER_SEC
请指教。谢谢你。
int counter;
counter = pkt[0];
cout << endl;
cout << counter << endl;
if(counter == 1)
{
cout << "revolution" << endl;
}