Call()
Description
Makes a call to a cell phone number.
Syntax
Call(phone_number[]);
Parameters
Variable | Input |
|---|---|
| Cell phone number. |
Returns
Return value | Return explanation |
SCRIPT_OPERATION_SUCCESS | Success |
SCRIPT_OPERATION_FAILED | Failed |
Function call example
Call example
main()
{
Call("+370647XXXXX"); // you can call directly
new gates[15] = "+370647XXXXX"; // or you can set variable
Call(gates); // and call trough variable
while(1)
{
Delay(100);
}
}Used in Examples