Making a Delay ON Timer in FLOWSTONE.

by Mjtrinihobby in Circuits > Software

816 Views, 1 Favorites, 0 Comments

Making a Delay ON Timer in FLOWSTONE.

banner-flowstone2-white-short.bmp

There are times when you need a delay from going FALSE to TRUE. This is very useful as a startup delay when your schematic or compiled EXE initially loads and you want to default actions to load. Also, if you want to turn on a motor only after a float switch register high level after x seconds, to prevent intermittent running of the motor, an ON delay is great to protect that motor.

Let me show you how I did this in Flowstone for all my automation projects.

The Custom Ticker.

Clipboard01.bmp

This ticker is user adjustable and is an available module. This forms the core of the delay schematic. Once the ON check box is enabled, repeating pulses are generated.

Counting Pulses.

Clipboard03.jpg

The counter primitive I used to give me a readout of how many pulses have been generated. When the maximum count is reached, the counter is reset.

Starting the Count.

Clipboard04.jpg

This piece of schematic I used to start the Ticker and also to immediately stop/cancel the count.

The Completed Schematic!

Clipboard05.jpg

Here is the full schematic. The Boolean input of TRUE will cause the timer to start. Once the number of seconds has elapsed the the output goes from FALSE to TRUE. If at anytime the input becomes FALSE, the output will become FALSE regardless of the state of the timer.

I hope you have found this instructable useful.