count down timing???????
Dear all,
could somebody help me to bulid by using Basic stamp count down timing from O to 10 mins?????
best wishes
could somebody help me to bulid by using Basic stamp count down timing from O to 10 mins?????
best wishes

Comments
' {$STAMP BS2} ' {$PBASIC 2.5} Counter VAR Nib Counter = 0 DO PAUSE 60000 ' Pause one minute Counter = Counter + 1 LOOP UNTIL (Counter = 10) ' 10 minutes.Basic stamps are not multiprocessors. If you want to do other processing while the counter is running, you have to get a 555 timer or a DS1302.
▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔▔
/dev/null