--> Delphi Tips Trick | Deskripsi Singkat Blog di Sini

Delphi Tips Trick

For Newbie

Saturday 21 February 2015



Sending sms using Delphi + modem wavecom and Twavecom components: if using Delphi + comport to send sms is considered complicated since you have to really understand about AT command concept on modem wavecom,… and will be more complicated when the reading process of sms
received then partied or sorted according to dates, messages content, time, operator and so on … so it will be little bit complex when you have to find certain characters as initial number of cellphone, beginning sms, ending sms, and so on…. However by using these twavecom components, you could send and receive sms very easily, including checking credit by code USSD, sending sms flash and so on.

Tuesday 6 January 2015

Sending sms using Delphi + modem wavecom and Twavecom components

Sending sms using Delphi + modem wavecom and Twavecom components



Sending sms using Delphi + modem wavecom and Twavecom components: if using Delphi + comport to send sms is considered complicated since you have to really understand about AT command concept on modem wavecom,… and will be more complicated when the reading process of sms
received then partied or sorted according to dates, messages content, time, operator and so on … so it will be little bit complex when you have to find certain characters as initial number of cellphone, beginning sms, ending sms, and so on…. However by using these twavecom components, you could send and receive sms very easily, including checking credit by code USSD, sending sms flash and so on.

Monday 5 January 2015

no image

Motion detection delphi + ds pack

Motion detection is application that is used as observer system or protection system in a certain room, for example coffer room of a organization, such as bank, in a certain time this room has to be empty without anyone inside, as protection application can be developed using sms delivery facility to those that is related when detected a movement. This application can also be developed by automatic facility video recorder if detecting a movement in video preview that is capture in camera as protection input system.

Ds pack and delphi can be used for develop an application which can be used for motion detector throuh a camera e.g web camera.

Making System autoresponder by delphi + modem wavecom By using delphi + modem wavecom and Twavecom components

Making System autoresponder by delphi + modem wavecom By using delphi + modem wavecom and Twavecom components



Making System autoresponder by delphi + modem wavecom By using delphi + modem wavecom and Twavecom components

Fitur :
Receiving sms using Delphi + modem wavecom and Twavecom components

Receiving sms using Delphi + modem wavecom and Twavecom components



Receiving sms using Delphi + modem wavecom and Twavecom components: reading process or receiving sms then parted or sorted according to dates, message sontent, time, operator etc using comport component on delphi will make sms reading process will be more difficult since you have to find certain characters as initial cell phone number, beginning sms, ending sms and so on … you also have to recognize AT command among AT+CMTI =xx as signal sms received to modem… 

Sms controller (via sms controlling) by using modem serial wavecom fastrack M1306B being interfaced with microcontroller of bascom scripts.

Sms controller (via sms controlling) by using modem serial wavecom fastrack M1306B being interfaced with microcontroller of bascom scripts.



 Sms controller (via sms controlling) by using modem serial wavecom fastrack M1306B being interfaced with microcontroller of bascom scripts.

I have learned sending sms by using modem serial wavecom fastrack M1306B being interfaced with microcontroller of bascom scripts.
 just for fun, since I already learn how to send sms by using modem serial wavecom fastrack M1306B being interfaced with microcontroller of bascom scripts.
. In principle, sms delivery process is conducted by using communication serial, both between pc and modem or could be between modem and microcontroller. Basically, sms sending process is communication with AT command. AT command used to send SMS as below:
At+cmgs = 085743320xxx [enter]
Write the messages will be sent, then press ctrl + z simultaneously (programming code ascii for rl + z is #26). It should appear OK as the sign that sms already sent.
Here is the source code sending sms using bascom:
   Print "AT+CMGS=";   
  Print "085729169629" '---- cellphone numbers : , replaceable
  Waitms 700    '----- wait 700 ms
  Print "DEVICE SHIFT, INDICATION OF THEFT ";    '----- sms content sent
   Print Chr(26) '----- final code for sending sms command
  Wait 1  '----- wait 1 second
Above code will send command
At+cmgs = 085729169629 [enter]
Then, DEVICE MOVE, INDICATION OF THEFT, and character ctrl + Z to modem. It means we command modem to send sms contains DEVICE MOVE, INDICATION OF THEFT to 085729169629
The complete source code as follows:

no image

record video file using video grabber delphi

record video file using video grabber delphi