We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91b7b6a commit 07bf9d3Copy full SHA for 07bf9d3
examples/ReceiveSMS/ReceiveSMS.ino
@@ -23,11 +23,12 @@ void onSMSReceived(){
23
void setup(){
24
Serial.begin(115200);
25
while (!Serial);
26
- cellular.setDebugStream(Serial);
+ // cellular.setDebugStream(Serial); // Uncomment this line to enable debug output
27
cellular.begin();
28
29
Serial.println("Connecting...");
30
cellular.connect();
31
+ Serial.println("Connected!");
32
33
// Register interrupt based callback for new SMS
34
attachInterrupt(digitalPinToInterrupt(NEW_SMS_INTERRUPT_PIN), onSMSReceived, RISING);
0 commit comments