Skip to content

Commit

Permalink
minimal modifications for github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
cristidragomir97 committed Apr 16, 2024
1 parent ec50468 commit ae1f919
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/compile-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,12 @@ env:
UNIVERSAL_SKETCH_PATHS: |
- examples/HTTPClient
- examples/HTTPSClient
- examples/TimeAndLocation
- examples/GetTime
- examples/GetLocation
- examples/DeleteSMS
- examples/ReceiveSMS
- examples/SendSMS
- examples/ModemTerminal
SKETCHES_REPORTS_PATH: sketches-reports
SKETCHES_REPORTS_ARTIFACT_NAME: sketches-reports

Expand Down
7 changes: 7 additions & 0 deletions src/ArduinoCellular.h
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,13 @@ class ArduinoCellular {
*/
String sendATCommand(const char * command, unsigned long timeout = 1000);



/**
* @brief Sends a USSD command to the network operator and waits for a response.
* @param command The USSD command to send.
* @return The response from the network operator. (Note: The response may be an SMS message or a USSD response)
*/
String sendUSSDCommand(const char * command);


Expand Down

0 comments on commit ae1f919

Please sign in to comment.