我怎么能等到arduino灯闪烁多少次?

时间:2017-02-25 19:06:23

标签: c++ arduino microcontroller

我知道这似乎是一个随机的问题,基本上我在电路中设置了一个光电阻器,以便检测光线。我有一个激光器会闪烁不同的时间来发出信号,让我们说闪烁1/2秒,然后闪烁1秒= a。

我怎么能等待并发现这一点,对不起,如果这没有意义......

1 个答案:

答案 0 :(得分:1)

此功能将以毫秒为单位返回激光模块在光电阻器上拍摄的时间:

int photo_resistor_time()
{
    int i = 0;
    while (photo_resistor_value > 100)
    {
        i++;
        Delay(1);
    }
    return i;
}