Arsip: kirim data ke mikro secara terus menurus

more 17 years ago
westsumtra
dear all.. saya ada kesulitan ...tentang kirim data ke mikro secara terus menurus...
mohon bantuan nya gimana cara nya setelah Button1 ditekan program delphi akan mengirimkan angka 1 ke mikro secara terus menerus ?? thx
procedure TForm1.Button1Click(Sender: TObject);
begin
comport1.Writestr ("1");
end;

more 17 years ago
DelphiExpert
gunakan loop forever, atau bisa anda gunakan timer dng set interval tertentu...
var
Stop: Boolean; // --> global variable
begin
Stop:= False;
while not Stop do
begin
Comport1.WriteStr('1');
Sleep(10); // kasih jeda 10 milidetik
Application.ProcessMessages; // proses windows messages
end;
end;

more 17 years ago
albie
Button2 := STOP
onClick :
begin
Stop := true;
end;
-> Nglengkapin punya Mr. DeX :)

more 17 years ago
albie
Alternatif : Tambahin komponen Timer, Interval bisa diset terserah ( 1000 = tiap 1 detik)
Button1Click : Timer1.enable := true;
TimeronTimer : Comport.writestr('1'); Application.processMessages;
Button2Click : Timer2.enable := false;
more ...
- Pages:
- 1
reply |
Report Obsolete
AI Forward

🚀 We're thrilled to partner with Alibaba Cloud for "AI Forward - Alibaba Cloud Global Developer Summit 2025" in Jakarta! Join us and explore the future of AI. Register now:
https://int.alibabacloud.com/m/1000400772/
#AlibabaCloud #DeveloperSummit #Jakarta #AIFORWARD
Last Articles
Last Topic
- PascalTalk #6: (Podcast) Kuliah IT di luar negeri, susah gak sih?
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #5: UX: Research, Design and Engineer
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #4: Obrolan Ringan Seputar IT
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #2: Membuat Sendiri SMART HOME
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #3: RADically Fast and Easy Mobile Apps Development with Delphi
by LuriDarmawan in Tutorial & Community Project more 4 years ago - PascalTalk #1: Pemanfaatan Artificial Intelligence di Masa Covid-19
by LuriDarmawan in Tutorial & Community Project more 4 years ago - Tempat Latihan Posting
by LuriDarmawan in OOT more 5 years ago - Archive
- Looping lagi...
by idhiel in Hal umum tentang Pascal Indonesia more 12 years ago - [ask] koneksi ke ODBC user Dsn saat runtime dengan ado
by halimanh in FireBird more 12 years ago - Validasi menggunakan data tanggal
by mas_kofa in Hal umum tentang Pascal Indonesia more 12 years ago
Random Topic
- [?] Bagaimana Cara Remote MySQL
by babypigs in MySQL more 17 years ago - Printer mini epson TM U220B
by wati in Tip n Trik Pemrograman more 14 years ago - please help me.....
by gus_pram in Multimedia & Graphic Enhancement more 18 years ago - scrollbox
by newbiez in Hal umum tentang Pascal Indonesia more 17 years ago - NewBie, tolong kasih saran buat Sistem Ujian Online !!
by Bl4ckNinj4z in Hal umum tentang Pascal Indonesia more 18 years ago - mengirim variabel delphi ke variabel fastreport script
by delphi_pitu in Reporting more 13 years ago - error koneksi mysql dari client ke server
by azharz in MySQL more 16 years ago - Ambil data text dari format email
by RoenZ in Enginering more 16 years ago - Mempercepat proses pencarian data
by kabuki_enemy in Tip n Trik Pemrograman more 17 years ago - Baca tulisan di aplikasi Dos
by luckynvic in Enginering more 18 years ago