Browse Source

Extra debugging

v_master
SRGDamia1 7 years ago
parent
commit
ad278fb834
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      TinyGsmClientXBee.h

+ 5
- 1
TinyGsmClientXBee.h View File

@ -519,7 +519,11 @@ private:
streamWrite(tail...); streamWrite(tail...);
} }
int streamRead() { return stream.read(); }
int streamRead() {
int c = stream.read();
DBG((char)c)
return c;
}
String streamReadUntil(char c) { String streamReadUntil(char c) {
String return_string = stream.readStringUntil(c); String return_string = stream.readStringUntil(c);


Loading…
Cancel
Save