2016-12-02 10 views
0

ホール効果センサーと同様のセンサーを使用して割り込みの数をカウントしています。ランダムな時間が経過すると、通常は1〜2時間オンになった後、リセットされ、続いてランダムな間隔でランダムにリセットされます。Nodemcu/ESP 8266をリセットする原因は何ですか?

counter = 0; 
sampletime = 0; 
lastrisetime = tmr.now() 
pin = 2 

do 
    gpio.mode(pin, gpio.INT) 

    local function rising(level) 
    -- to eliminate multiple counts during a short period (.5 second) difference is taken 
     if ((tmr.now() - lastrisetime) > 500000) then 
     lastrisetime = tmr.now(); 
    end 
    -- when tmr.now() resets to zero this takes into account that particular count 
    if ((tmr.now() - lastrisetime) < 0) then 
     lastrisetime = tmr.now(); 
    end 
    end 

    local function falling(level) 
    if ((tmr.now() - lastrisetime) > 500000) then 
     -- Only counted when the pin is on falling 
     -- It is like a sine curve so either the peak or trough is counted 
      counter = counter + 1; 
     print(counter) 
     lastrisetime = tmr.now(); 
     sampletime = lastrisetime; 
    end 
    -- when tmr.now() resets to zero this takes into account that particular count 
    if ((tmr.now() - lastrisetime) < 0) then 
     lastrisetime = tmr.now(); 
      counter = counter + 1; 
     print(counter) 
    end 
    end 

    gpio.trig(pin, "up", rising) 
    gpio.trig(pin, "down", falling) 
end 

また、これは私がメモリのために時間おきにチェックし、あなたがそこに結果を見ることができ、私はCoolTermに乗るエラーです。

NodeMCU 0.9.6 build 20150704 powered by Lua 5.1.4 
> Connecting... 
connected 
print(node.heap()) 
22920 
> print(node.heap()) 
22904 
> print(node.heap()) 
22944 
> print(node.heap()) 
22944 
> 2. .print(node.heap()) 
22944 
> print(node.heap()) 
22944 
> ∆.)ç˛.䂸 ã ¸@H7.àåË‘ 

NodeMCU 0.9.6 build 20150704 powered by Lua 5.1.4 
> Connecting... 
connected 
print(node.heap()) 
21216 
> F.)ç˛.¶Ùå¶[email protected]  .ÊÍ 

NodeMCU 0.9.6 build 20150704 powered by Lua 5.1.4 
> Connecting... 
connected 
H!໩.ä‚D.ã ¸å¶H.åb‘ 

NodeMCU 0.9.6 build 20150704 powered by Lua 5.1.4 
> Connecting... 
connected 
print(node.heap()) 
22904 
> print(node.heap()) 
21216 
> 

この度は読んでいただきありがとうございます。あなたの入力を感謝します。

+0

これが解決されましたか?その場合は、[upvoting/accepting](https://meta.stackexchange.com/questions/5234/how-does-accepting-an-answer-work)の回答を検討してください。 –

答えて

0

ウォッチドッグタイマの問題が考えられます。

割り込みサービスルーチンでは、あまり待っているようです。

そこからタイミング操作を削除するほうがいいでしょう。フラグを設定するだけで、別のループでフラグの状態を確認し、タイミング操作を完了してください。

0

NodeMCUのLua 5.1.4

によって供給0.9.6、ビルド20150704最初の事は本当にNodeMCUファームウェアの最新バージョンを使用することです。 0.9.xは古代であり、多くのバグを含み、もはやサポートされていません。ここを参照してくださいhttps://github.com/nodemcu/nodemcu-firmware/#releases

lastrisetime = tmr.now()

本当の問題はtmr.now()ロールオーバー2147秒で、私は信じているということです。私がproper debounce functionで働いたときにI learned about this

-- inspired by https://github.com/hackhitchin/esp8266-co-uk/blob/master/tutorials/introduction-to-gpio-api.md 
-- and http://www.esp8266.com/viewtopic.php?f=24&t=4833&start=5#p29127 
local pin = 4 --> GPIO2 

function debounce (func) 
    local last = 0 
    local delay = 50000 -- 50ms * 1000 as tmr.now() has μs resolution 

    return function (...) 
     local now = tmr.now() 
     local delta = now - last 
     if delta < 0 then delta = delta + 2147483647 end; -- proposed because of delta rolling over, https://github.com/hackhitchin/esp8266-co-uk/issues/2 
     if delta < delay then return end; 

     last = now 
     return func(...) 
    end 
end 

function onChange() 
    print('The pin value has changed to '..gpio.read(pin)) 
end 

gpio.mode(pin, gpio.INT, gpio.PULLUP) -- see https://github.com/hackhitchin/esp8266-co-uk/pull/1 
gpio.trig(pin, 'both', debounce(onChange)) 
+0

お返事ありがとうございます。最新のNodeMCUファームウェアを販売する信頼できるソースをインストールしていますか?私はそれをフラッシュしようとしましたが動作しませんでした。見つかったのは古いLolinバージョン –

+0

しか販売していませんでした。「それをフラッシュしようとしましたが動作しませんでした」 - それを修正する必要があります。新しいファームウェアが必要なときには、新しい開発キットを注文することは持続可能ではありません:http://nodemcu.readthedocs.io/en/latest/ja/flash/ –

関連する問題