Files
lazarus-ccr/components/industrialstuff/Example/u_industrial.pas

40 lines
525 B
ObjectPascal
Raw Normal View History

unit u_industrial;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, IndLed, Sensors, LedNumber,
IndGnouMeter, AdvLed, Forms, Controls, Graphics, Dialogs, Arrow;
type
{ TForm1 }
TForm1 = class(TForm)
AdvLed1: TAdvLed;
AnalogSensor1: TAnalogSensor;
Arrow1: TArrow;
indGnouMeter1: TindGnouMeter;
indLed1: TindLed;
LEDNumber1: TLEDNumber;
StopLightSensor1: TStopLightSensor;
private
public
end;
var
Form1: TForm1;
implementation
{$R *.lfm}
{ TForm1 }
end.