|
|
- /**************************************************************
- *
- * For this example, you need to install PubSubClient library:
- * https://github.com/knolleary/pubsubclient
- * or from http://librarymanager/all#PubSubClient
- *
- * TinyGSM Getting Started guide:
- * https://tiny.cc/tinygsm-readme
- *
- * For more MQTT examples, see PubSubClient library
- *
- **************************************************************
- * Use Mosquitto client tools to work with MQTT
- * Ubuntu/Linux: sudo apt-get install mosquitto-clients
- * Windows: https://mosquitto.org/download/
- *
- * Subscribe for messages:
- * mosquitto_sub -h test.mosquitto.org -t GsmClientTest/init -t GsmClientTest/ledStatus -q 1
- * Toggle led:
- * mosquitto_pub -h test.mosquitto.org -t GsmClientTest/led -q 1 -m "toggle"
- *
- * You can use Node-RED for wiring together MQTT-enabled devices
- * https://nodered.org/
- * Also, take a look at these additional Node-RED modules:
- * node-red-contrib-blynk-ws
- * node-red-dashboard
- *
- **************************************************************/
-
- // Select your modem:
- #define TINY_GSM_MODEM_SIM800
- // #define TINY_GSM_MODEM_SIM900
- // #define TINY_GSM_MODEM_SIM808
- // #define TINY_GSM_MODEM_SIM868
- // #define TINY_GSM_MODEM_UBLOX
- // #define TINY_GSM_MODEM_M95
- // #define TINY_GSM_MODEM_BG96
- // #define TINY_GSM_MODEM_A6
- // #define TINY_GSM_MODEM_A7
- // #define TINY_GSM_MODEM_M590
- // #define TINY_GSM_MODEM_MC60
- // #define TINY_GSM_MODEM_MC60E
- // #define TINY_GSM_MODEM_ESP8266
- // #define TINY_GSM_MODEM_XBEE
-
- #include <TinyGsmClient.h>
- #include <PubSubClient.h>
-
- // Set serial for debug console (to the Serial Monitor, default speed 115200)
- #define SerialMon Serial
-
- // Use Hardware Serial on Mega, Leonardo, Micro
- #define SerialAT Serial1
-
- // or Software Serial on Uno, Nano
- //#include <SoftwareSerial.h>
- //SoftwareSerial SerialAT(2, 3); // RX, TX
-
-
- // Your GPRS credentials
- // Leave empty, if missing user or pass
- const char apn[] = "YourAPN";
- const char user[] = "";
- const char pass[] = "";
-
- // MQTT details
- const char* broker = "test.mosquitto.org";
-
- const char* topicLed = "GsmClientTest/led";
- const char* topicInit = "GsmClientTest/init";
- const char* topicLedStatus = "GsmClientTest/ledStatus";
-
- TinyGsm modem(SerialAT);
- TinyGsmClient client(modem);
- PubSubClient mqtt(client);
-
- #define LED_PIN 13
- int ledStatus = LOW;
-
- long lastReconnectAttempt = 0;
-
- void setup() {
- pinMode(LED_PIN, OUTPUT);
-
- // Set console baud rate
- SerialMon.begin(115200);
- delay(10);
-
- // Set GSM module baud rate
- SerialAT.begin(115200);
- delay(3000);
-
- // Restart takes quite some time
- // To skip it, call init() instead of restart()
- SerialMon.println("Initializing modem...");
- modem.restart();
-
- String modemInfo = modem.getModemInfo();
- SerialMon.print("Modem: ");
- SerialMon.println(modemInfo);
-
- // Unlock your SIM card with a PIN
- //modem.simUnlock("1234");
-
- SerialMon.print("Waiting for network...");
- if (!modem.waitForNetwork()) {
- SerialMon.println(" fail");
- while (true);
- }
- SerialMon.println(" OK");
-
- SerialMon.print("Connecting to ");
- SerialMon.print(apn);
- if (!modem.gprsConnect(apn, user, pass)) {
- SerialMon.println(" fail");
- while (true);
- }
- SerialMon.println(" OK");
-
- // MQTT Broker setup
- mqtt.setServer(broker, 1883);
- mqtt.setCallback(mqttCallback);
- }
-
- boolean mqttConnect() {
- SerialMon.print("Connecting to ");
- SerialMon.print(broker);
-
- // Connect to MQTT Broker
- boolean status = mqtt.connect("GsmClientTest");
-
- // Or, if you want to authenticate MQTT:
- //boolean status = mqtt.connect("GsmClientName", "mqtt_user", "mqtt_pass");
-
- if (status == false) {
- SerialMon.println(" fail");
- return false;
- }
- SerialMon.println(" OK");
- mqtt.publish(topicInit, "GsmClientTest started");
- mqtt.subscribe(topicLed);
- return mqtt.connected();
- }
-
- void loop() {
-
- if (!mqtt.connected()) {
- SerialMon.println("=== MQTT NOT CONNECTED ===");
- // Reconnect every 10 seconds
- unsigned long t = millis();
- if (t - lastReconnectAttempt > 10000L) {
- lastReconnectAttempt = t;
- if (mqttConnect()) {
- lastReconnectAttempt = 0;
- }
- }
- delay(100);
- return;
- }
-
- mqtt.loop();
- }
-
- void mqttCallback(char* topic, byte* payload, unsigned int len) {
- SerialMon.print("Message arrived [");
- SerialMon.print(topic);
- SerialMon.print("]: ");
- SerialMon.write(payload, len);
- SerialMon.println();
-
- // Only proceed if incoming message's topic matches
- if (String(topic) == topicLed) {
- ledStatus = !ledStatus;
- digitalWrite(LED_PIN, ledStatus);
- mqtt.publish(topicLedStatus, ledStatus ? "1" : "0");
- }
- }
|