Browse Source

Removed custom pin numbers

v_master
Sara Damiano 5 years ago
parent
commit
b8f802901e
5 changed files with 12 additions and 27 deletions
  1. +2
    -5
      examples/AllFunctions/AllFunctions.ino
  2. +2
    -5
      examples/HttpClient/HttpClient.ino
  3. +2
    -5
      examples/HttpsClient/HttpsClient.ino
  4. +3
    -6
      examples/MqttClient/MqttClient.ino
  5. +3
    -6
      examples/WebClient/WebClient.ino

+ 2
- 5
examples/AllFunctions/AllFunctions.ino View File

@ -92,12 +92,9 @@ void setup() {
SerialMon.begin(115200);
delay(10);
// !!!!!!!!!!!
// Set your reset, enable, power pins here
pinMode(20, OUTPUT);
digitalWrite(20, HIGH);
pinMode(23, OUTPUT);
digitalWrite(23, HIGH);
// !!!!!!!!!!!
DBG("Wait...");


+ 2
- 5
examples/HttpClient/HttpClient.ino View File

@ -103,12 +103,9 @@ void setup() {
SerialMon.begin(115200);
delay(10);
// !!!!!!!!!!!
// Set your reset, enable, power pins here
pinMode(20, OUTPUT);
digitalWrite(20, HIGH);
pinMode(23, OUTPUT);
digitalWrite(23, HIGH);
// !!!!!!!!!!!
SerialMon.println("Wait...");


+ 2
- 5
examples/HttpsClient/HttpsClient.ino View File

@ -96,12 +96,9 @@ void setup() {
SerialMon.begin(115200);
delay(10);
// !!!!!!!!!!!
// Set your reset, enable, power pins here
pinMode(20, OUTPUT);
digitalWrite(20, HIGH);
pinMode(23, OUTPUT);
digitalWrite(23, HIGH);
// !!!!!!!!!!!
SerialMon.println("Wait...");


+ 3
- 6
examples/MqttClient/MqttClient.ino View File

@ -115,14 +115,11 @@ void setup() {
SerialMon.begin(115200);
delay(10);
// Set your reset, enable, power pins here
pinMode(LED_PIN, OUTPUT);
pinMode(20, OUTPUT);
digitalWrite(20, HIGH);
pinMode(23, OUTPUT);
digitalWrite(23, LOW);
// !!!!!!!!!!!
// Set your reset, enable, power pins here
// !!!!!!!!!!!
SerialMon.println("Wait...");


+ 3
- 6
examples/WebClient/WebClient.ino View File

@ -99,14 +99,11 @@ const char resource[] = "/TinyGSM/logo.txt";
void setup() {
// Set console baud rate
SerialMon.begin(115200);
delay(10);
delay(10);
// !!!!!!!!!!!
// Set your reset, enable, power pins here
pinMode(20, OUTPUT);
digitalWrite(20, HIGH);
pinMode(23, OUTPUT);
digitalWrite(23, HIGH);
// !!!!!!!!!!!
SerialMon.println("Wait...");


Loading…
Cancel
Save