Difference between revisions of "Component: GSM (EB066, Generic AT) (Wireless)"
From Flowcode Help
Jump to navigationJump to searchLine 60: | Line 60: | ||
''<span style="color:red;">No additional examples</span>'' | ''<span style="color:red;">No additional examples</span>'' | ||
+ | |||
+ | |||
Line 65: | Line 67: | ||
==Macro reference== | ==Macro reference== | ||
+ | ===DialNumber=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
Line 83: | Line 86: | ||
+ | ===GetTextString=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
Line 101: | Line 105: | ||
+ | ===SendString=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
Line 119: | Line 124: | ||
+ | ===SendScript=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
Line 137: | Line 143: | ||
+ | ===SendCommand=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
Line 160: | Line 167: | ||
+ | ===AnswerIncomingCall=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
Line 173: | Line 181: | ||
+ | ===GetTextNumber=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
Line 191: | Line 200: | ||
+ | ===HangUpCall=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
Line 204: | Line 214: | ||
+ | ===ReadString=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
Line 222: | Line 233: | ||
+ | ===SendTextMessage=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
Line 245: | Line 257: | ||
+ | ===StringReceive=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
Line 258: | Line 271: | ||
+ | ===DeleteAllMessages=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
Line 271: | Line 285: | ||
+ | ===CheckNetworkStatus=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
Line 284: | Line 299: | ||
+ | ===CheckForIncoming=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- | ||
Line 297: | Line 313: | ||
+ | ===Initialise=== | ||
{| class="wikitable" style="width:60%; background-color:#FFFFFF;" | {| class="wikitable" style="width:60%; background-color:#FFFFFF;" | ||
|- | |- |
Revision as of 11:50, 3 February 2023
Author | Matrix Ltd. |
Version | 2.0 |
Category | Wireless |
Contents
GSM (EB066, Generic AT) component
Low level routines for controlling a standard AT GSM / GPRS interface Also available in the form of the EB066 GSM E-block.
Component Source Code
Please click here to download the component source project: FC_Comp_Source_GSM.fcfx
Please click here to view the component source code (Beta): FC_Comp_Source_GSM.fcfx
Detailed description
No detailed description exists yet for this component
Examples
No additional examples
Macro reference
DialNumber
![]() |
DialNumber |
Performs a standard voice call by dialling the number specified. Returns 0 for call in progress and 255 for no response. | |
![]() |
Number |
![]() |
Return |
GetTextString
![]() |
GetTextString |
Collects the text message data from an incoming text message. | |
![]() |
NumBytes |
![]() |
Return |
SendString
![]() |
SendString |
Sends a string to the GSM module. | |
![]() |
Text |
![]() |
Return |
SendScript
![]() |
SendScript |
Send an AT command script. Returns 0 for fail, 1 for success and 255 for unrecognised script idx. | |
![]() |
idx |
![]() |
Return |
SendCommand
![]() |
SendCommand |
Sends a command string to the GSM module. 0 = Command sent ok, 255 = No Reply | |
![]() |
Command |
![]() |
SendCR |
![]() |
Return |
AnswerIncomingCall
![]() |
AnswerIncomingCall |
Answers the phone for an incoming type call. Returns 0 for success and 255 for failure. | |
![]() |
Return |
GetTextNumber
![]() |
GetTextNumber |
Collects the sender's phone number from an incoming text message. | |
![]() |
NumBytes |
![]() |
Return |
HangUpCall
![]() |
HangUpCall |
Ends a voice based call. Returns 0 for success and 255 for failure. | |
![]() |
Return |
ReadString
![]() |
ReadString |
Copies the data from the data string array to a local string variable | |
![]() |
NumBytes |
![]() |
Return |
SendTextMessage
![]() |
SendTextMessage |
Sends the text message data specified to the number specified using the SMS protocol. Returns 0 for success and 255 for failure. | |
![]() |
Number |
![]() |
Message |
![]() |
Return |
StringReceive
![]() |
StringReceive |
Attempts to receive a string from the GSM modem. | |
![]() |
Return |
DeleteAllMessages
![]() |
DeleteAllMessages |
Removes all pending text messages from the GSM module. Returns 0 for success and 255 for fail. | |
![]() |
Return |
CheckNetworkStatus
![]() |
CheckNetworkStatus |
Returns the state of the GSM network. 0 = Not connected, 1 = connected, 255 = no reply from GSM. | |
![]() |
Return |
CheckForIncoming
![]() |
CheckForIncoming |
Checks to see if any incoming phone call or SMS message. 0 = Nothing, 1 = Text Received, 2 = Phone Ringing | |
![]() |
Return |
Initialise
![]() |
Initialise |
Sets up the GSM module. Returns 0 for OK, 255 for no reply and 254 for command fail. | |
![]() |
Return |