Jump to content

Sending sms using a USB-GSM modem LC SIM800C V3 and AT commands


Viszna
 Share

Recommended Posts

Hello
Recently, there was a need to develop an SMS gateway.
The machine is supposed to send notifications to employees, the number of sms sent is not much 10-50 a month, so it makes no sense to buy a subscription to the www-sms API.

The machine is based on a USB-GSM modem: LC SIM800C V3 (aliexp.. price 3-8$)
lcsim800c.jpg.fa51c70ae1807c88d587eaf7e3848896.jpg


I used UDF: ComUDF.au3 

Thank you mLipok for your work!

Below is the program code with an example
WARNING!
The program is written very extensively (not optimized) - it was created with a novice programmer as part of exercises.
But it makes it very understandable (lots of comments)
There are ONLY functions here:
- modem initialization
- sending SMS
- deleting received sms (no possibility of reading)

Maybe someone will be useful for further experiments with AT commands to communicate with the modem.

The biggest challenge for me was the dependence of AT commands in different modem operation modes (instruction AT command for chip SIM800 ONLY 380 pages !) :) 

LCSIM800CV3.au3

#include "ComUDF.au3"
#include <Array.au3>
#include <Timers.au3>

Global Const $SMS_NOPL = 0  ; send sms not POLISH characters set the SMS mode "GSM" look AT command AT+CSCS
Global Const $SMS_PL = 1    ; send sms with POLISH characters set the SMS mode "HEX" look AT command AT+CSCS

; Write setting from PC with modem USB
Global $LCSIM800CV3_sComPort = 'COM3'                    ; a com port with USB modem, e.g. COM1
Global $LCSIM800CV3_sPortSettings = ' baud=9600 data=8'  ; speed settings (for default values see _COM_OpenPort)
Global $LCSIM800CV3_hComPort

Local $LCSIM800CV3_aPortsList = _COM_ListPorts()        ; an array with COM ports
;_ArrayDisplay($LCSIM800CV3_aPortsList)                 ; displays the ports found in OS



_Example()  ; example function



; #FUNCTION# ====================================================================================================================
; Name ..........: _Example
; Description ...: Declaring an array with data to send an SMS (various phone number formats)
;                  Sending SMS in "HEX" mode
;                  Sending SMS in "GSM" mode
; Syntax ........: _Example()
; Parameters ....: None
; Return values .: None
; Author ........:
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _Example()
    ;MODIFY number phone     vvvvvvv                           and      vvvvvvvv
    Local $aTest[2][2] = [['123456789','Test pl liter: ęóąśłżźćń'],['+48123456789','Test PL liter: ĘÓĄŚŁŻŹĆŃ']]

    ConsoleWrite('==START send sms mode "HEX" with diacritical character==' & @CRLF)
    $Return = _SendSMSFromArray($aTest, $SMS_PL)
    $Error = @error
    $Extended = @extended
    If $Error Then
        ConsoleWrite('$Error: ' & $Error & @CRLF)
        ConsoleWrite('$Extended: ' & $Extended & @CRLF)
        ConsoleWrite('$Return: ' & $Return & @CRLF)
    Else
        _ArrayDisplay($Return, '$SMS_PL')
    EndIf
    ConsoleWrite('==END send sms mode "HEX" with diacritical character==' & @CRLF)

    ConsoleWrite('==START send sms mode "GSM" only basic alphabet==' & @CRLF)
    $Return = _SendSMSFromArray($aTest, $SMS_NOPL)
    $Error = @error
    $Extended = @extended
    If $Error Then
        ConsoleWrite('$Error: ' & $Error & @CRLF)
        ConsoleWrite('$Extended: ' & $Extended & @CRLF)
        ConsoleWrite('$Return: ' & $Return & @CRLF)
    Else
        _ArrayDisplay($Return, '$SMS_NOPL')
    EndIf
    ConsoleWrite('==END send sms mode "GSM" only basic alphabet==' & @CRLF)
EndFunc






; #FUNCTION# ====================================================================================================================
; Name ..........: _SendSMSFromArray
; Description ...: Complete SMS sending function (opening the COM port; modem initialization;
;                                                 sending a text message; closing the COM port)
; Syntax ........: _SendSMSFromArray($aTableSMS, $PL)
; Parameters ....: $aTableSMS           - an 2D array [NumberPhone_1][TextSMS_1]
;                                                     [NumberPhone_n][TextSMS_n]
;                  $PL                  - $SMS_NOPL (0) NO PL char send normal text "GSM"
;                                       - $SMS_PL (1) PL char send mode "HEX"
; Return values .: success              - input array and add col with status
;                                                     [NumberPhone_1][TextSMS_1][status_send _1]
;                                                     [NumberPhone_n][TextSMS_n][status_send _n]
;                  fail                 - set @error and description error
; Author ........:
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _SendSMSFromArray($aTableSMS, $PL)
    Local $Return, $Error, $Extended, $i
    $Return = _InitModem($PL)
    $Error = @error
    $Extended = @extended
    If $Error Then
        _COM_ClosePort($LCSIM800CV3_hComPort)
        Return SetError(1, 1, '[_SendSMSFromArray] ' & $Return)
    EndIf

    _DelAllSMS()

    _ArrayColInsert($aTableSMS, 2)  ; add col to status sending sms

    For $i=0 to UBound($aTableSMS,  $UBOUND_ROWS)-1
    $Return = _SendSMS($aTableSMS[$i][0], $aTableSMS[$i][1], $PL)
    $Error = @error
    $Extended = @extended
    If $Error Then
        $aTableSMS[$i][2] = $Return
    Else
        $aTableSMS[$i][2] = 'OK'
    EndIf
    Next

    _COM_ClosePort($LCSIM800CV3_hComPort)

    Return $aTableSMS
EndFunc



; #FUNCTION# ====================================================================================================================
; Name ..........: _InitModem
; Description ...: Open port COM, verify modem reposnse, send command setting SMS mode
; Syntax ........: _InitModem($PL)
; Parameters ....: $PL - 0 no PL character - SMS mode "GSM"
;                        1 PL character    - SMS mode "HEX"
; Return values .: success - 1
;                  failure - set @error and return description error
; Author ........:
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _InitModem($PL)
    Local $Return, $Error, $Extended

    $Return = _COM_OpenPort($LCSIM800CV3_sComPort & $LCSIM800CV3_sPortSettings)
    $Error = @error
    If $Error Then
        Return SetError(1, 1, '[_Init] error open port: ' & $LCSIM800CV3_sComPort & $LCSIM800CV3_sPortSettings)
    EndIf
    $LCSIM800CV3_hComPort = $Return

    $Return = __SendToModem('AT') ; ping modem
    If StringInStr($Return, 'OK') = 0 Then
        Return SetError(1, 2, '[_Init] communication error with modem - AT command returned: ' & $Return)
    EndIf

    $Return = __SendToModem('ATE0') ; disable "echo" 0= send "AT" received: "OK"; 1= send "AT" received: "AT @CR OK"
    If StringInStr($Return, 'OK') = 0 Then
        Return SetError(1, 2, '[_Init] communication error with modem - ATE0 command returned: ' & $Return)
    EndIf

    $Return = __SendToModem('AT+CMGF=1')    ; format wiadomości SMS (0 - PDU, 1 - Text)
    If StringInStr($Return, 'OK') = 0 Then
        Return SetError(1, 2, '[_Init] communication error with modem - AT+CMGF=1 command returned: ' & $Return)
    EndIf

    If $PL=$SMS_NOPL Then
        $Return = __SendToModem('AT+CSCS="GSM"')    ; set mode "GSM" all character is normal text
        If StringInStr($Return, 'OK') = 0 Then
            Return SetError(1, 2, '[_Init] communication error with modem - AT+CSCS=""GSM"" command returned: ' & $Return)
        EndIf
        $Return = __SendToModem('AT+CSMP=17,167,0,0')   ; additional settings to "GSM"
        If StringInStr($Return, 'OK') = 0 Then
            Return SetError(1, 2, '[_Init] communication error with modem - AT+CSMP=17,167,0,0 command returned: ' & $Return)
        EndIf
    ElseIf $PL=$SMS_PL Then
        $Return = __SendToModem('AT+CSCS="HEX"')    ; set mode "HEX" all character is hex 4digit
        If StringInStr($Return, 'OK') = 0 Then
            Return SetError(1, 2, '[_Init] communication error with modem - AT+CSCS=""HEX"" command returned: ' & $Return)
        EndIf
        $Return = __SendToModem('AT+CSMP=17,167,0,8')   ; additional settings to "HEX"
        If StringInStr($Return, 'OK') = 0 Then
            Return SetError(1, 2, '[_Init] communication error with modem - AT+CSMP=17,167,0,8 command returned: ' & $Return)
        EndIf
    Else
        Return SetError(1, 2, '[_Init] incorrect parameter $PL:' & $PL)
    EndIf
        Return 1
EndFunc


; #FUNCTION# ====================================================================================================================
; Name ..........: _DelAllSMS
; Description ...: Deletes all received sms
; Syntax ........: _DelAllSMS()
; Parameters ....: None
; Return values .: success - 1
;                  failure - set @error and return description error
; Author ........:
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _DelAllSMS()
    $Return = __SendToModem('AT+CMGDA="DEL ALL"')   ; send command AT delete all sms and receives text "OK"
    If StringInStr($Return, 'OK') = 0 Then
        Return SetError(1, 1, '[_DelAllSMS] SMS erase error - AT+CMGDA="DEL ALL" command returned: ' & $Return)
    EndIf
    Return 1
EndFunc



; #FUNCTION# ====================================================================================================================
; Name ..........: _SendSMS
; Description ...: Send sms. Restriction of sending to the country POLAND (+48)
; Syntax ........: _SendSMS($sPhoneNumber, $sSMS, $PL)
; Parameters ....: $sPhoneNumber        - a string value.
;                  $sSMS                - a string value.
;                  $PL - 0=no PL character - SMS mode "GSM"; 1=PL character - SMS mode "HEX"
; Return values .: success - 1
;                  failure - set @error and return description error
; Author ........:
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _SendSMS($sPhoneNumber, $sSMS, $PL)
    Local $Return, $Error, $Extended
    ;verifying and modifying of the telephone number
    $sPhoneNumber = StringRegExpReplace($sPhoneNumber, "\D", '')
    If Not StringLen($sPhoneNumber) = 9 Or Not StringLen($sPhoneNumber) = 11 Then    ;Number MUST 9 or 11 digit
        Return SetError(1, 9, '[_SendSMS] wrong phone number: ' & $sPhoneNumber)
    EndIf

;START ONLY country +48
;NOTE this section allows you to send text messages only to the area code PL
;CHANGE 48 with your country code or delete this part
    If StringLen($sPhoneNumber) = 9 Then
        $sPhoneNumber = '+48' & $sPhoneNumber   ;
    ElseIf StringLen($sPhoneNumber) = 11 Then
        If StringLeft($sPhoneNumber, 2) <> '48' Then
                Return SetError(1, 9, '[_SendSMS] wrong phone area code: ' & $sPhoneNumber)
            Else
                $sPhoneNumber = '+' & $sPhoneNumber
            EndIf
    EndIf
;END ONLY country +48

    ;verifying and modifying of the text sms
    If StringLen($sSMS) > 250 Then
        Return SetError(1, 10, '[_SendSMS] the content of the SMS exceeds 250 characters: ' & StringLen($sSMS))
    EndIf

    ;sending SMS
    ;step 1 -send phone number & <CR>
    $Return = __SendToModem('AT+CMGS="' & $sPhoneNumber & '"')  ; send command AT & number and receives char ">"
    If StringInStr($Return, '>') = 0 Then
        Return SetError(1, 1, '[_SendSMS] modem communication error - command AT+CMGS="' & $sPhoneNumber & '": ' & $Return)
    EndIf
    ;step 2 - send text sms & <ESC> / Ctrl+Z
    If $PL=$SMS_PL Then ; convert to HEX with PL char
        $sSMS = Hex(StringToBinary($sSMS, $SB_UTF16BE))
    ElseIf $PL=$SMS_NOPL Then   ; $SMS_NOPL
        $sSMS = __ReplacePLChar($sSMS)          ; if "GSM" then normal text and replace ą=>a etc.
    Else
        Return SetError(1, 1, '[_SendSMS] incorrect parameter $PL:' & $PL)
    EndIf

    $Return = __SendToModem($sSMS, Chr(26)) ;send text and Ctrl-Z
    If StringInStr($Return, 'ERROR') > 0 Then
        Return SetError(1, 2, '[_SendSMS] modem communication error - command AT+CSCS="GSM" returned: ' & $Return)
    ElseIf StringInStr($Return, '+CMGS:') > 0 And StringInStr($Return, 'OK') > 0 Then
        Return 1
    Else
        Return SetError(1, 3, '[_SendSMS] communication error with modem - unknown answer: ' & $Return)
    EndIf
EndFunc



Func __SendToModem($sText, $sEnter=Chr(13))
    Local $Return, $Error, $hTimerStart
    If $sEnter <> Chr(13) And $sEnter <> Chr(26) Then
        Return SetError(1, 10, '[__SendToModem] argument value not allowed $sEnter: ' & $sEnter)
    EndIf
    $Return = _COM_SendString($LCSIM800CV3_hComPort, $sText & $sEnter)
    $Error = @error
    If $Error Then
        Return SetError(1, 1, '[__SendToModem][_COM_SendString] it returned an error: ' & $Error)
    EndIf
    Sleep(500)     ; wait 500ms to allow the receive buffer to fill up
    $hTimerStart = _Timer_Init()
    Do
        Do
            Sleep(100)
            $Return = _COM_GetInputcount($LCSIM800CV3_hComPort)
            $Error = @error
            If $Error Then
                Return SetError(1, 1, '[__SendToModem][_COM_GetInputcount] it returned an error: ' & $Error)
            EndIf
            $iCount = $Return
            If _Timer_Diff($hTimerStart) > 61*1000 Then ;WARNING! Must be> 60 sec - instruction from modem: "Max response time send sms: 60s"
                Return SetError(1, 1, '[__SendToModem][_COM_GetInputcount] no answer from modem for 60 seconds')
            EndIf
        Until $iCount > 0
        $Return = _COM_ReadString($LCSIM800CV3_hComPort, $iCount)
        $Error = @error
        If $Error Then
            Return SetError(1, 1, '[__SendToModem][_COM_ReadString] it returned an error: ' & $Error)
        EndIf
    Until StringInStr($Return, '+CMTI: "')=0 ; we omit modem responses informing about receiving an SMS
    Return $Return
EndFunc





; #INTERNAL_USE_ONLY# ===========================================================================================================
; Name ..........: __ReplacePLChar
; Description ...: Replace polish characters to NO polish
; Syntax ........: __ReplacePLChar($sText)
; Parameters ....: $sText               - a string value.
; Return values .: String no polish character
; Author ........:
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func __ReplacePLChar($sText)
    $sText = StringReplace($sText, 'Ą', 'A', 0, $STR_CASESENSE)
    $sText = StringReplace($sText, 'ą', 'a', 0, $STR_CASESENSE)
    $sText = StringReplace($sText, 'Ć', 'C', 0, $STR_CASESENSE)
    $sText = StringReplace($sText, 'ć', 'c', 0, $STR_CASESENSE)
    $sText = StringReplace($sText, 'Ę', 'E', 0, $STR_CASESENSE)
    $sText = StringReplace($sText, 'ę', 'e', 0, $STR_CASESENSE)
    $sText = StringReplace($sText, 'Ł', 'L', 0, $STR_CASESENSE)
    $sText = StringReplace($sText, 'ł', 'l', 0, $STR_CASESENSE)
    $sText = StringReplace($sText, 'Ń', 'N', 0, $STR_CASESENSE)
    $sText = StringReplace($sText, 'ń', 'n', 0, $STR_CASESENSE)
    $sText = StringReplace($sText, 'Ó', 'O', 0, $STR_CASESENSE)
    $sText = StringReplace($sText, 'ó', 'o', 0, $STR_CASESENSE)
    $sText = StringReplace($sText, 'Ś', 'S', 0, $STR_CASESENSE)
    $sText = StringReplace($sText, 'ś', 's', 0, $STR_CASESENSE)
    $sText = StringReplace($sText, 'Ź', 'Z', 0, $STR_CASESENSE)
    $sText = StringReplace($sText, 'ź', 'z', 0, $STR_CASESENSE)
    $sText = StringReplace($sText, 'Ż', 'Z', 0, $STR_CASESENSE)
    $sText = StringReplace($sText, 'ż', 'z', 0, $STR_CASESENSE)
    Return $sText
EndFunc

 

Link to comment
Share on other sites

Thanks my country man.

We will look on this.
 

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

Spoiler

Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind. 

My contribution (my own projects): * Debenu Quick PDF Library - UDF * Debenu PDF Viewer SDK - UDF * Acrobat Reader - ActiveX Viewer * UDF for PDFCreator v1.x.x * XZip - UDF * AppCompatFlags UDF * CrowdinAPI UDF * _WinMergeCompare2Files() * _JavaExceptionAdd() * _IsBeta() * Writing DPI Awareness App - workaround * _AutoIt_RequiredVersion() * Chilkatsoft.au3 UDF * TeamViewer.au3 UDF * JavaManagement UDF * VIES over SOAP * WinSCP UDF * GHAPI UDF - modest begining - comunication with GitHub REST APIErrorLog.au3 UDF - A logging Library * Include Dependency Tree (Tool for analyzing script relations) * Show_Macro_Values.au3 *

 

My contribution to others projects or UDF based on  others projects: * _sql.au3 UDF  * POP3.au3 UDF *  RTF Printer - UDF * XML.au3 UDF * ADO.au3 UDF SMTP Mailer UDF * Dual Monitor resolution detection * * 2GUI on Dual Monitor System * _SciLexer.au3 UDF * SciTE - Lexer for console pane

Useful links: * Forum Rules * Forum etiquette *  Forum Information and FAQs * How to post code on the forum * AutoIt Online Documentation * AutoIt Online Beta Documentation * SciTE4AutoIt3 getting started * Convert text blocks to AutoIt code * Games made in Autoit * Programming related sites * Polish AutoIt Tutorial * DllCall Code Generator * 

Wiki: Expand your knowledge - AutoIt Wiki * Collection of User Defined Functions * How to use HelpFile * Good coding practices in AutoIt * 

OpenOffice/LibreOffice/XLS Related: WriterDemo.au3 * XLS/MDB from scratch with ADOX

IE Related:  * How to use IE.au3  UDF with  AutoIt v3.3.14.x * Why isn't Autoit able to click a Javascript Dialog? * Clicking javascript button with no ID * IE document >> save as MHT file * IETab Switcher (by LarsJ ) * HTML Entities * _IEquerySelectorAll() (by uncommon) * IE in TaskSchedulerIE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) * PDF Related:How to get reference to PDF object embeded in IE * IE on Windows 11

I encourage you to read: * Global Vars * Best Coding Practices * Please explain code used in Help file for several File functions * OOP-like approach in AutoIt * UDF-Spec Questions *  EXAMPLE: How To Catch ConsoleWrite() output to a file or to CMD *

I also encourage you to check awesome @trancexx code:  * Create COM objects from modules without any demand on user to register anything. * Another COM object registering stuffOnHungApp handlerAvoid "AutoIt Error" message box in unknown errors  * HTML editor

winhttp.au3 related : * https://www.autoitscript.com/forum/topic/206771-winhttpau3-download-problem-youre-speaking-plain-http-to-an-ssl-enabled-server-port/

"Homo sum; humani nil a me alienum puto" - Publius Terentius Afer
"Program are meant to be read by humans and only incidentally for computers and execute" - Donald Knuth, "The Art of Computer Programming"
:naughty:  :ranting:, be  :) and       \\//_.

Anticipating Errors :  "Any program that accepts data from a user must include code to validate that data before sending it to the data store. You cannot rely on the data store, ...., or even your programming language to notify you of problems. You must check every byte entered by your users, making sure that data is the correct type for its field and that required fields are not empty."

Signature last update: 2023-04-24

Link to comment
Share on other sites

I understand your solution works for you.

33 minutes ago, Viszna said:

The biggest challenge for me was the dependence of AT commands in different modem operation modes (instruction AT command for chip SIM800 ONLY 380 pages !) 

We @mLipok and @Danyfirex have exactly the same problem.
It works on @Danyfirex modem and his modem/provider/network, but not for me.
We are working on finding solutions.

35 minutes ago, Viszna said:

Maybe someone will be useful for further experiments with AT commands to communicate with the modem.

I hope so.

Thanks.

 

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

Spoiler

Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind. 

My contribution (my own projects): * Debenu Quick PDF Library - UDF * Debenu PDF Viewer SDK - UDF * Acrobat Reader - ActiveX Viewer * UDF for PDFCreator v1.x.x * XZip - UDF * AppCompatFlags UDF * CrowdinAPI UDF * _WinMergeCompare2Files() * _JavaExceptionAdd() * _IsBeta() * Writing DPI Awareness App - workaround * _AutoIt_RequiredVersion() * Chilkatsoft.au3 UDF * TeamViewer.au3 UDF * JavaManagement UDF * VIES over SOAP * WinSCP UDF * GHAPI UDF - modest begining - comunication with GitHub REST APIErrorLog.au3 UDF - A logging Library * Include Dependency Tree (Tool for analyzing script relations) * Show_Macro_Values.au3 *

 

My contribution to others projects or UDF based on  others projects: * _sql.au3 UDF  * POP3.au3 UDF *  RTF Printer - UDF * XML.au3 UDF * ADO.au3 UDF SMTP Mailer UDF * Dual Monitor resolution detection * * 2GUI on Dual Monitor System * _SciLexer.au3 UDF * SciTE - Lexer for console pane

Useful links: * Forum Rules * Forum etiquette *  Forum Information and FAQs * How to post code on the forum * AutoIt Online Documentation * AutoIt Online Beta Documentation * SciTE4AutoIt3 getting started * Convert text blocks to AutoIt code * Games made in Autoit * Programming related sites * Polish AutoIt Tutorial * DllCall Code Generator * 

Wiki: Expand your knowledge - AutoIt Wiki * Collection of User Defined Functions * How to use HelpFile * Good coding practices in AutoIt * 

OpenOffice/LibreOffice/XLS Related: WriterDemo.au3 * XLS/MDB from scratch with ADOX

IE Related:  * How to use IE.au3  UDF with  AutoIt v3.3.14.x * Why isn't Autoit able to click a Javascript Dialog? * Clicking javascript button with no ID * IE document >> save as MHT file * IETab Switcher (by LarsJ ) * HTML Entities * _IEquerySelectorAll() (by uncommon) * IE in TaskSchedulerIE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) * PDF Related:How to get reference to PDF object embeded in IE * IE on Windows 11

I encourage you to read: * Global Vars * Best Coding Practices * Please explain code used in Help file for several File functions * OOP-like approach in AutoIt * UDF-Spec Questions *  EXAMPLE: How To Catch ConsoleWrite() output to a file or to CMD *

I also encourage you to check awesome @trancexx code:  * Create COM objects from modules without any demand on user to register anything. * Another COM object registering stuffOnHungApp handlerAvoid "AutoIt Error" message box in unknown errors  * HTML editor

winhttp.au3 related : * https://www.autoitscript.com/forum/topic/206771-winhttpau3-download-problem-youre-speaking-plain-http-to-an-ssl-enabled-server-port/

"Homo sum; humani nil a me alienum puto" - Publius Terentius Afer
"Program are meant to be read by humans and only incidentally for computers and execute" - Donald Knuth, "The Art of Computer Programming"
:naughty:  :ranting:, be  :) and       \\//_.

Anticipating Errors :  "Any program that accepts data from a user must include code to validate that data before sending it to the data store. You cannot rely on the data store, ...., or even your programming language to notify you of problems. You must check every byte entered by your users, making sure that data is the correct type for its field and that required fields are not empty."

Signature last update: 2023-04-24

Link to comment
Share on other sites

I was looking at something like this recently, just as a mental challenge, to use LoRa with an ESP32 to do remote commands across a bit of distance, or use SMS commands both ways with data using GSM/GPRS/LTE/5G backbone. I also purchased an SOS emergency call dongle for my elderly mother and looked on how easy it would be to write an interface to send the initial settings reliably and automatically for setup as the Chinglish documentation is quite non-specific with examples. Downloaded the documentation and thought there has to be a better way. Surely somebody has already done this? I was going to come over to the forums and have a peek at some serial routines, and saw this thread.

Sorry to butt in, this post is not AutoIT related, but I have used MyPhoneExplorer for many, many years to send bulk SMS reliably from an Android phone. You will find it at www.fjsoft.at. Works great with simple cut and paste of text as well as destination phone numbers. It has other useful nifty features such as importing and exporting contacts (text and csv files are good for this), backup and generally is a well supported and reliable product. You may find that a cheapie Android phone with a USB cable or a LAN connection may be far more efficient than fiddling with Chinese hardware, reams of documentation, and reinventing the wheel. I don't have any skin in the product, but just recommend pre-loading it to anybody that has an Android phone and Windows PC - it may save you butt one day when you crack the screen and cannot see your display any more. All your settings, contacts, texts, tasks, calendar can be all saved in one swoop, and able to be transferred to a new phone. Whoosh!

The time you save by using it can be spent doing other useful things such as writing code!

Robust, reliable, and best of all, free! No adverts, no hassles, and intuitively works like you would expect such a package to work. The right tool for the job.

This suggestion won't solve my issues and requirements, but it may thoroughly solve yours.

...now back to your scheduled headscratching/reverse engineering....

Edited by Confuzzled
Link to comment
Share on other sites

  • 2 months later...

Hello @Viszna .

As I said we was working on soultions:

On 10/14/2020 at 12:35 PM, mLipok said:

We @mLipok and @Danyfirex have exactly the same problem.
It works on @Danyfirex modem and his modem/provider/network, but not for me.
We are working on finding solutions.

Please take a look here:

 

and here is support topic:

 

 

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

Spoiler

Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind. 

My contribution (my own projects): * Debenu Quick PDF Library - UDF * Debenu PDF Viewer SDK - UDF * Acrobat Reader - ActiveX Viewer * UDF for PDFCreator v1.x.x * XZip - UDF * AppCompatFlags UDF * CrowdinAPI UDF * _WinMergeCompare2Files() * _JavaExceptionAdd() * _IsBeta() * Writing DPI Awareness App - workaround * _AutoIt_RequiredVersion() * Chilkatsoft.au3 UDF * TeamViewer.au3 UDF * JavaManagement UDF * VIES over SOAP * WinSCP UDF * GHAPI UDF - modest begining - comunication with GitHub REST APIErrorLog.au3 UDF - A logging Library * Include Dependency Tree (Tool for analyzing script relations) * Show_Macro_Values.au3 *

 

My contribution to others projects or UDF based on  others projects: * _sql.au3 UDF  * POP3.au3 UDF *  RTF Printer - UDF * XML.au3 UDF * ADO.au3 UDF SMTP Mailer UDF * Dual Monitor resolution detection * * 2GUI on Dual Monitor System * _SciLexer.au3 UDF * SciTE - Lexer for console pane

Useful links: * Forum Rules * Forum etiquette *  Forum Information and FAQs * How to post code on the forum * AutoIt Online Documentation * AutoIt Online Beta Documentation * SciTE4AutoIt3 getting started * Convert text blocks to AutoIt code * Games made in Autoit * Programming related sites * Polish AutoIt Tutorial * DllCall Code Generator * 

Wiki: Expand your knowledge - AutoIt Wiki * Collection of User Defined Functions * How to use HelpFile * Good coding practices in AutoIt * 

OpenOffice/LibreOffice/XLS Related: WriterDemo.au3 * XLS/MDB from scratch with ADOX

IE Related:  * How to use IE.au3  UDF with  AutoIt v3.3.14.x * Why isn't Autoit able to click a Javascript Dialog? * Clicking javascript button with no ID * IE document >> save as MHT file * IETab Switcher (by LarsJ ) * HTML Entities * _IEquerySelectorAll() (by uncommon) * IE in TaskSchedulerIE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) * PDF Related:How to get reference to PDF object embeded in IE * IE on Windows 11

I encourage you to read: * Global Vars * Best Coding Practices * Please explain code used in Help file for several File functions * OOP-like approach in AutoIt * UDF-Spec Questions *  EXAMPLE: How To Catch ConsoleWrite() output to a file or to CMD *

I also encourage you to check awesome @trancexx code:  * Create COM objects from modules without any demand on user to register anything. * Another COM object registering stuffOnHungApp handlerAvoid "AutoIt Error" message box in unknown errors  * HTML editor

winhttp.au3 related : * https://www.autoitscript.com/forum/topic/206771-winhttpau3-download-problem-youre-speaking-plain-http-to-an-ssl-enabled-server-port/

"Homo sum; humani nil a me alienum puto" - Publius Terentius Afer
"Program are meant to be read by humans and only incidentally for computers and execute" - Donald Knuth, "The Art of Computer Programming"
:naughty:  :ranting:, be  :) and       \\//_.

Anticipating Errors :  "Any program that accepts data from a user must include code to validate that data before sending it to the data store. You cannot rely on the data store, ...., or even your programming language to notify you of problems. You must check every byte entered by your users, making sure that data is the correct type for its field and that required fields are not empty."

Signature last update: 2023-04-24

Link to comment
Share on other sites

  • 2 years later...

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

Spoiler

Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind. 

My contribution (my own projects): * Debenu Quick PDF Library - UDF * Debenu PDF Viewer SDK - UDF * Acrobat Reader - ActiveX Viewer * UDF for PDFCreator v1.x.x * XZip - UDF * AppCompatFlags UDF * CrowdinAPI UDF * _WinMergeCompare2Files() * _JavaExceptionAdd() * _IsBeta() * Writing DPI Awareness App - workaround * _AutoIt_RequiredVersion() * Chilkatsoft.au3 UDF * TeamViewer.au3 UDF * JavaManagement UDF * VIES over SOAP * WinSCP UDF * GHAPI UDF - modest begining - comunication with GitHub REST APIErrorLog.au3 UDF - A logging Library * Include Dependency Tree (Tool for analyzing script relations) * Show_Macro_Values.au3 *

 

My contribution to others projects or UDF based on  others projects: * _sql.au3 UDF  * POP3.au3 UDF *  RTF Printer - UDF * XML.au3 UDF * ADO.au3 UDF SMTP Mailer UDF * Dual Monitor resolution detection * * 2GUI on Dual Monitor System * _SciLexer.au3 UDF * SciTE - Lexer for console pane

Useful links: * Forum Rules * Forum etiquette *  Forum Information and FAQs * How to post code on the forum * AutoIt Online Documentation * AutoIt Online Beta Documentation * SciTE4AutoIt3 getting started * Convert text blocks to AutoIt code * Games made in Autoit * Programming related sites * Polish AutoIt Tutorial * DllCall Code Generator * 

Wiki: Expand your knowledge - AutoIt Wiki * Collection of User Defined Functions * How to use HelpFile * Good coding practices in AutoIt * 

OpenOffice/LibreOffice/XLS Related: WriterDemo.au3 * XLS/MDB from scratch with ADOX

IE Related:  * How to use IE.au3  UDF with  AutoIt v3.3.14.x * Why isn't Autoit able to click a Javascript Dialog? * Clicking javascript button with no ID * IE document >> save as MHT file * IETab Switcher (by LarsJ ) * HTML Entities * _IEquerySelectorAll() (by uncommon) * IE in TaskSchedulerIE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) * PDF Related:How to get reference to PDF object embeded in IE * IE on Windows 11

I encourage you to read: * Global Vars * Best Coding Practices * Please explain code used in Help file for several File functions * OOP-like approach in AutoIt * UDF-Spec Questions *  EXAMPLE: How To Catch ConsoleWrite() output to a file or to CMD *

I also encourage you to check awesome @trancexx code:  * Create COM objects from modules without any demand on user to register anything. * Another COM object registering stuffOnHungApp handlerAvoid "AutoIt Error" message box in unknown errors  * HTML editor

winhttp.au3 related : * https://www.autoitscript.com/forum/topic/206771-winhttpau3-download-problem-youre-speaking-plain-http-to-an-ssl-enabled-server-port/

"Homo sum; humani nil a me alienum puto" - Publius Terentius Afer
"Program are meant to be read by humans and only incidentally for computers and execute" - Donald Knuth, "The Art of Computer Programming"
:naughty:  :ranting:, be  :) and       \\//_.

Anticipating Errors :  "Any program that accepts data from a user must include code to validate that data before sending it to the data store. You cannot rely on the data store, ...., or even your programming language to notify you of problems. You must check every byte entered by your users, making sure that data is the correct type for its field and that required fields are not empty."

Signature last update: 2023-04-24

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...