File tree 2 files changed +11
-1
lines changed
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 25
25
UNIVERSAL_SKETCH_PATHS : |
26
26
- examples/HTTPClient
27
27
- examples/HTTPSClient
28
- - examples/TimeAndLocation
28
+ - examples/GetTime
29
+ - examples/GetLocation
30
+ - examples/DeleteSMS
29
31
- examples/ReceiveSMS
30
32
- examples/SendSMS
33
+ - examples/ModemTerminal
31
34
SKETCHES_REPORTS_PATH : sketches-reports
32
35
SKETCHES_REPORTS_ARTIFACT_NAME : sketches-reports
33
36
Original file line number Diff line number Diff line change @@ -184,6 +184,13 @@ class ArduinoCellular {
184
184
*/
185
185
String sendATCommand (const char * command, unsigned long timeout = 1000 );
186
186
187
+
188
+
189
+ /* *
190
+ * @brief Sends a USSD command to the network operator and waits for a response.
191
+ * @param command The USSD command to send.
192
+ * @return The response from the network operator. (Note: The response may be an SMS message or a USSD response)
193
+ */
187
194
String sendUSSDCommand (const char * command);
188
195
189
196
You can’t perform that action at this time.
0 commit comments