Archived
1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
pascal/SIREN.PAS
2001-11-30 12:14:44 +01:00

28 lines
450 B
Plaintext

program Siren;
uses Crt;
const MaxVal = 1200;
MinVal = 800;
var i: integer;
tmp: integer;
function GetSoundVal(t: real): integer;
begin
GetSoundVal := Trunc(Sin(t)*(MaxVal-MinVal)+MinVal);
end;
begin
i:=0;
repeat
Inc(i);
tmp := GetSoundVal(i/100);
Sound(tmp);
GotoXY(1,1); Write(tmp,' Hz ');
Delay(10);
until keypressed;
NoSound;
WriteLn('* Press any key *');
ReadKey;
end.