Difference between revisions of "SMS"
(15 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
== Description: == | == Description: == | ||
− | SMS_TX/SMS_RX blocks are used for communication between the program and the user through the GSM network. It | + | SMS_TX/SMS_RX blocks are used for communication between the program and the user through the GSM network. It uses SMS messages to transmit and receive information. |
+ | |||
+ | [[Libraries for IEC 61131-3|Back to Libraries]] | ||
=== SMS_RX === | === SMS_RX === | ||
Line 26: | Line 28: | ||
|string | |string | ||
| | | | ||
− | |SMS content | + | |SMS content '''(ASCII)''' |
|} | |} | ||
− | |||
Line 35: | Line 36: | ||
[[File:SMS_TX.png]] | [[File:SMS_TX.png]] | ||
− | |||
{| class="wikitable" | {| class="wikitable" | ||
Line 56: | Line 56: | ||
|string | |string | ||
| | | | ||
− | |SMS content | + | |SMS content '''(ASCII)''' |
|} | |} | ||
Line 65: | Line 65: | ||
'''SMS_TX''' - If a rising edge is detected at the SEND input, an SMS message is sent to the phone number from NUMBER input and the text contains the text from the TEXT input. | '''SMS_TX''' - If a rising edge is detected at the SEND input, an SMS message is sent to the phone number from NUMBER input and the text contains the text from the TEXT input. | ||
+ | |||
Line 73: | Line 74: | ||
− | '''00''' - For international communication. According to the operator, it is possible to replace 00 with +, but not all countries support the | + | '''00''' - For international communication. According to the operator, it is possible to replace 00 with +, but not all countries support the + format. '''00 is recommended'''. |
'''420''' - International Code for Czech Republic. Use the international code for the country where the device is located. | '''420''' - International Code for Czech Republic. Use the international code for the country where the device is located. | ||
'''731523929''' - Phone number | '''731523929''' - Phone number | ||
+ | |||
Line 94: | Line 96: | ||
[[File:SMS_TX_Example.png]] | [[File:SMS_TX_Example.png]] | ||
− | + | ||
+ | |||
+ | |||
+ | == Related links: == | ||
+ | |||
+ | Example: [[Sending and Receiving SMS | Sending and Receiving SMS]] <br> | ||
+ | Example: [https://www.metel.eu/en/newdesign/solutions?itemId=93 SMS Basic Example] | ||
+ | |||
[[Libraries for IEC 61131-3|Back to Libraries]] | [[Libraries for IEC 61131-3|Back to Libraries]] |
Latest revision as of 04:57, 21 May 2020
Contents
Description:
SMS_TX/SMS_RX blocks are used for communication between the program and the user through the GSM network. It uses SMS messages to transmit and receive information.
SMS_RX
Receive SMS messages.
Asynchronous interface | ||||
out | VALID | bool | indicates success operation and valid output | |
out | FROM | string | source phone number | |
out | TEXT | string | SMS content (ASCII) |
SMS_TX
Sends SMS messages.
Asynchronous interface | ||||
in | SEND | bool r_edge | rising edge starts new operation | |
in | NUMBER | string | destination phone number | |
in | TEXT | string | SMS content (ASCII) |
Block behavior:
SMS_RX - If a new incoming SMS is detected, a short pulse appears on the VALID output, the FROM and TEXT outputs are filled according to the SMS content.
SMS_TX - If a rising edge is detected at the SEND input, an SMS message is sent to the phone number from NUMBER input and the text contains the text from the TEXT input.
Valid Phone Number Format
The NUMBER input is a STRING format, so the phone number is entered in single quotes.
Example for Czech Republic: '00420731523929'
00 - For international communication. According to the operator, it is possible to replace 00 with +, but not all countries support the + format. 00 is recommended.
420 - International Code for Czech Republic. Use the international code for the country where the device is located.
731523929 - Phone number
Examples
SMS_RX
Closing the bus0_001_re1 relay provided the SMS text is ON and has been received from Phone_Number.
SMS_TX
Closing the tamper sends an SMS in the form "Door open" to the phone number Phone_Number.
Related links:
Example: Sending and Receiving SMS
Example: SMS Basic Example