Skip to content

Commit 07bf9d3

Browse files
committed
Turn off debug output by default
1 parent 91b7b6a commit 07bf9d3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/ReceiveSMS/ReceiveSMS.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,12 @@ void onSMSReceived(){
2323
void setup(){
2424
Serial.begin(115200);
2525
while (!Serial);
26-
cellular.setDebugStream(Serial);
26+
// cellular.setDebugStream(Serial); // Uncomment this line to enable debug output
2727
cellular.begin();
2828

2929
Serial.println("Connecting...");
3030
cellular.connect();
31+
Serial.println("Connected!");
3132

3233
// Register interrupt based callback for new SMS
3334
attachInterrupt(digitalPinToInterrupt(NEW_SMS_INTERRUPT_PIN), onSMSReceived, RISING);

0 commit comments

Comments
 (0)