Documentation for Intellect 4.10.4. Documentation for other versions of Intellect is available too.

Previous page VNS  TELEMETRY Next page


The SMS object corresponds to the Short Message Service system object.

The SMS object sends events presented in the table.  Procedure is started when the corresponding event appears.

Format of events procedure for the Short Message Service object:

OnEvent("SMS","_id_","_event_")

Description of events of the SMS object.

Event

Description

Comment

RECEIVE

Message is received

Use the ProcessFromSim registry key if event is not received while message receiving (see Registry keys reference guide).

Text of sent message is in the message <> parameter.

The telephone number in the +7XXXXXXXXXX  format from which message was sent is in the phone<> parameter.

Operator format to describe actions with the short message service is:

DoReact("SMS","_id_","_command_" [,"_parameters_"]);

List of commands and parameters for the SMS object is presented in the following table:

Commandcommand description

Parameters

Description of parameters

"SETUP" – settings of short message service.

device<>

SMS device.

flags<>

Flags.

message<>

Message text.

name<>

Object name.

phone<>

Telephone number.

Properties of the SMS object are shown in the table.

Properties of the SMS object

Description of properties

ID<>

Object ID.

PARENT_ID<>

Parent object ID.

 

Examples of using events and reactions of the Short Message service object:

  1. It is required to send short message to the “89179190909” number while alarm on the first video camera.

    OnEvent("CAM","1","MD_START")
    {
        DoReact("SMS","1","SETUP","phone<+79179190909>,message<camera 1, alarm>");
    }
  2. Set device for message delivery and send message to the “89179190909” number while alarm on the first sensor.

    OnEvent("GRAY","1","CONFIRM") //confirm alarm from sensor 1
    {
        DoReact("SMS","1","SETUP","device<>",); //set device for message delivery
        DoReact("SMS","1","SETUP","phone<+79179190909>,message<sensor 1, alarm>"); //send message about alarm on the sensor 1 to telephone number
    }
  3. Play the c:\Windows\Media\Tada.wav audio file while receiving sms using the Mail Message Service 2.

    OnEvent("SMS","2","RECEIVE")
    {
        DoReact("PLAYER","3","PLAY_WAV","file<c:\Windows\Media\Tada.wav>");
    }
  • No labels