我想打一個人的計數器使用c
和 這裏我的代碼使用c
PIC加上光電二極管: 假設我們有拖二極管一個在門的前面算進來的人,一個 在門的後面,以減少給人們留下的通過碼數,我的問題:人們計數器使用產品圖和C
while(1)
{
//suppose we declare a count variable to hold the count
if(d1 == 1) //suppose it's the first diode and when it's cut it's value will be one
{
count++;
}
if(d2 == 1)// represent d2
{
count--;
} // now my problem is when the count is increase by one it will decrease also by one
}
能否請你幫忙嗎?
無法您確定基於其中二極管被觸發順序是否進入或離開一個人嗎?也許用計時器來指定一個人必須走過兩個二極管的有效時間間隔。 – Michael 2014-11-25 12:21:44
我希望不拖延,我想使用一個標誌,但它也不適用於我,如果你有更好的想法,改變二極管的順序和位置,這也將有所幫助,並提前致謝 – 2014-11-25 12:24:26
請格式化你的代碼。 – 2014-11-25 12:41:05