You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

29 lines
612 B

/**************************************************************
*
* To run this tool, you need to install StreamDebugger library:
* https://github.com/vshymanskyy/StreamDebugger
*
**************************************************************/
#include <TinyGsmClient.h>
#include <StreamDebugger.h>
StreamDebugger GsmSerial(Serial1, Serial);
GsmClient gsm(GsmSerial);
void setup() {
// Set console baud rate
Serial.begin(115200);
delay(10);
// Set GSM module baud rate
GsmSerial.begin(115200);
delay(3000);
// Return to factory configuration
gsm.factoryDefault();
}
void loop() {
}