Pin TLWatchDogTimer.TTLWatchDogTimer.ActiveOutputPin
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
(One intermediate revision by one user not shown) |
Latest revision as of 00:10, 26 June 2013
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TTLWatchDogTimer
Contents |
Syntax
Delphi:
property ActiveOutputPin : TOWBoolSourcePin read FActiveOutputPin write FActiveOutputPin;
C++ Builder:
__property TOWBoolSourcePin ActiveOutputPin = { read=FActiveOutputPin, write=FActiveOutputPin };
Summary
The timer active boolean output pin of the component.
Description
ActiveOutputPin is the timer active boolean output pin of the
component.
You can connect this pin to any pin accepting boolean data.
The pin has value of True while the timer is armed. Once the timer sends a clock signal the value of the pin becomes False.
Delphi example:
TLWatchDogTimer1.ActiveOutputPin.Connect( ILLed1.InputPin );
C++ Builder example:
TLWatchDogTimer1->ActiveOutputPin->Connect( ILLed1->InputPin );
Visual C++(MFC/Win32) example:
TLWatchDogTimer1.ActiveOutputPin.Connect( ILLed.InputPin ); 1
Visual C++/CLI example:
watchDogTimer1->ActiveOutputPin->Connect( led1.InputPin );
C# example:
watchDogTimer1.ActiveOutputPin.Connect( led1.InputPin );
VB example:
WatchDogTimer1.ActiveOutputPin.Connect( Led1.InputPin )