AndrewMascolo / CountUpDownTimer

MIT License
28 stars 20 forks source link

TimeCheck #9

Open hugolost opened 8 years ago

hugolost commented 8 years ago

Hi,

I would use digitalWrite(10,LOW) when the complete countdown is 0. How can i make this with your Libary.

When i use

if (T.TimeCheck(0,0,0))
digitalWrite(10,LOW)

The Output goes every Second to Low.

Best Regrads from Germany, Dennis.

AndrewMascolo commented 8 years ago

Use this:

if (T.ShowTotalSeconds() == 0) digitalWrite( ... )

Sent from my iPhone

On Apr 28, 2016, at 4:08 PM, hugolost notifications@github.com wrote:

Hi,

I would use digitalWrite(10,LOW) when the complete countdown is 0. How can i make this with your Libary.

When i use

if (T.TimeCheck(0,0,0)) digitalWrite(10,LOW) The Output goes every Second to Low.

Best Regrads from Germany, Dennis.

— You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub

hugolost commented 8 years ago

Thank you very very much. It works.