-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCtrlPlatform.dpr
44 lines (41 loc) · 1.4 KB
/
CtrlPlatform.dpr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
program CtrlPlatform;
uses
Vcl.Forms,
unCtrlPlatMain in 'unCtrlPlatMain.pas' {frmRoboLang},
unBlock in 'unBlock.pas',
AdXPort {in '..\ADXPORT.PAS'},
unContainerBlock in 'unContainerBlock.pas',
unAbout in 'unAbout.pas' {frmAbout},
Vcl.Themes,
Vcl.Styles,
fBMP180 in 'fBMP180.pas' {frmBMP},
unDevices in 'unDevices.pas',
fAnalogIn in 'fAnalogIn.pas' {frmAnalogIn},
unHelpForms in 'unHelpForms.pas',
fSound in 'fSound.pas' {frmSound},
fUSonic in 'fUSonic.pas' {frmUSonic},
fServo in 'fServo.pas' {frmServo},
fSwitch in 'fSwitch.pas' {frmSwitch},
fTemp in 'fTemp.pas' {frmTemp},
unVariables in 'unVariables.pas',
unBlockVar in 'unBlockVar.pas',
DspUtils in 'ComponentPack\DspUtils.pas',
fDcMotor in 'fDcMotor.pas' {frmDcMotor},
fRobot in 'fRobot.pas' {frmRobot},
fLaser in 'fLaser.pas' {frmLaser},
fserialLcd in 'fserialLcd.pas' {frmSerialLcd},
uUpdate in 'uUpdate.pas' {frmUpdate},
fOptions in 'fOptions.pas' {frmOptions};
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.Title := '¸ëåã÷ïò óõóêåõþí Arduino';
Application.CreateForm(TfrmRoboLang, frmRoboLang);
Application.CreateForm(TfrmAbout, frmAbout);
Application.CreateForm(TfrmLaser, frmLaser);
Application.CreateForm(TfrmSerialLcd, frmSerialLcd);
Application.CreateForm(TfrmUpdate, frmUpdate);
Application.CreateForm(TfrmOptions, frmOptions);
Application.Run;
end.