Skip to content

Commit

Permalink
Update examples
Browse files Browse the repository at this point in the history
  • Loading branch information
vshymanskyy committed Dec 16, 2016
1 parent 32c6b83 commit 62faa34
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 18 deletions.
8 changes: 4 additions & 4 deletions examples/BlynkClient/BlynkClient.ino
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@

// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "YourAuthToken";
const char auth[] = "YourAuthToken";

// Your GPRS credentials
// Leave empty, if missing user or pass
char apn[] = "YourAPN";
char user[] = "";
char pass[] = "";
const char apn[] = "YourAPN";
const char user[] = "";
const char pass[] = "";

// Hardware Serial on Mega, Leonardo, Micro
#define SerialAT Serial1
Expand Down
10 changes: 5 additions & 5 deletions examples/FileDownload/FileDownload.ino
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@

// Your GPRS credentials
// Leave empty, if missing user or pass
char apn[] = "YourAPN";
char user[] = "";
char pass[] = "";
const char apn[] = "YourAPN";
const char user[] = "";
const char pass[] = "";

// Use Hardware Serial on Mega, Leonardo, Micro
#define SerialAT Serial1
Expand All @@ -28,8 +28,8 @@ char pass[] = "";
TinyGsm modem(SerialAT);
TinyGsmClient client(modem);

char server[] = "cdn.rawgit.com";
char resource[] = "/vshymanskyy/tinygsm/master/extras/test_10k.hex";
const char server[] = "cdn.rawgit.com";
const char resource[] = "/vshymanskyy/tinygsm/master/extras/test_10k.hex";
uint32_t knownCRC32 = 0x54b3dcbf;
uint32_t knownFileSize = 10240; // In case server does not send it

Expand Down
6 changes: 3 additions & 3 deletions examples/MqttClient/MqttClient.ino
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@

// Your GPRS credentials
// Leave empty, if missing user or pass
char apn[] = "YourAPN";
char user[] = "";
char pass[] = "";
const char apn[] = "www.ab.kyivstar.net";
const char user[] = "igprs";
const char pass[] = "internet";

// Use Hardware Serial on Mega, Leonardo, Micro
#define SerialAT Serial1
Expand Down
10 changes: 5 additions & 5 deletions examples/WebClient/WebClient.ino
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@

// Your GPRS credentials
// Leave empty, if missing user or pass
char apn[] = "YourAPN";
char user[] = "";
char pass[] = "";
const char apn[] = "YourAPN";
const char user[] = "";
const char pass[] = "";

// Use Hardware Serial on Mega, Leonardo, Micro
#define SerialAT Serial1
Expand All @@ -26,8 +26,8 @@ char pass[] = "";
TinyGsm modem(SerialAT);
TinyGsmClient client(modem);

char server[] = "cdn.rawgit.com";
char resource[] = "/vshymanskyy/tinygsm/master/extras/logo.txt";
const char server[] = "cdn.rawgit.com";
const char resource[] = "/vshymanskyy/tinygsm/master/extras/logo.txt";

void setup() {
// Set console baud rate
Expand Down
2 changes: 1 addition & 1 deletion tools/FactoryReset/FactoryReset.ino
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ void setup() {
SerialAT.begin(115200);
delay(3000);

if (!modem.begin()) {
if (!modem.init()) {
SerialMon.println(F("***********************************************************"));
SerialMon.println(F(" Cannot initialize module!"));
SerialMon.println(F(" Use File -> Examples -> TinyGSM -> tools -> AT_Debug"));
Expand Down

0 comments on commit 62faa34

Please sign in to comment.