Example showing the ublox Cellular GPS/GNSS module with the online PubNub service on an LPC4088 Experiment Base Board

Dependencies:   C027_Support C12832 EALib LM75B MMA7660 PubNub mbed-rtos mbed picojson

PubNubDemo.cpp

Committer:
embeddedartists
Date:
2014-10-01
Revision:
10:cbefe5a22319
Parent:
8:ad3a3cffc336

File content as of revision 10:cbefe5a22319:

#include <cstring>

#include "mbed.h"
//#include "C12832.h"
//#include "MMA7660.h"
#include "MMA7455.h"
#include "LM75B.h"

#include "picojson.h"
#include "PubNub.h"

//------------------------------------------------------------------------------------
// You need to configure these cellular modem / SIM parameters.
// These parameters are ignored for LISA-C200 variants and can be left NULL.
//------------------------------------------------------------------------------------
#include "MDM.h"
//! Set your secret SIM pin here (e.g. "1234"). Check your SIM manual.
#define SIMPIN      NULL
/*! The APN of your network operator SIM, sometimes it is "internet" check your 
    contract with the network operator. You can also try to look-up your settings in 
    google: https://www.google.de/search?q=APN+list */
#define APN         "online.telia.se"
//! Set the user name for your APN, or NULL if not needed
#define USERNAME    NULL
//! Set the password for your APN, or NULL if not needed
#define PASSWORD    NULL 
//------------------------------------------------------------------------------------

/* Demo of PubNub + the mbed application board. */

/* How to get things set up: */
/* 1. Tune in at the PubNub Developer Console, with the following
 * keys (press Subscribe afterwards): */
const char pubkey[] = "demo";
const char subkey[] = "demo";
const char channel[] = "mbed";
/* 2. Attach your mbed board to your computer. A folder should pop up like
 * if you plug in a USB memory stick. */
/* 3. Open this example in the mbed web IDE and hit the Compile button. */
/* 4. A download popup with a .bin file will appear; save it in the USB
 * mbed folder. */
/* 5. Press reset button on the mbed to start things up. */

/* You will see the board publish a "status" message that shows its
 * current temperature and physical tilt.  The board's LCD should
 * print some progress messages regarding that. */
/* You can make the board do things too, by sending messages like:
 * { "send_status": true }
 * { "lcd": "Hi there!" }
 * { "beep": true }
 * { "led": {"r": 0.5, "g": 1, "b": 0} }
 * Try it out! Paste these in the Message window and press the send icon.
 */

Serial pc(USBTX, USBRX); // tx, rx
//MMA7660 MMA(P0_27, P0_28);
MMA7455 MMA(P0_27, P0_28);
LM75B tmp(P0_27, P0_28, LM75B::ADDRESS_1);
//C12832 lcd(D11, D13, D12, D7, D10);

PwmOut led_r(p25); // RGB LED with 3 PWM outputs for dimmer control
PwmOut led_g(p28);
PwmOut led_b(p26);
//PwmOut speaker(D6); // Speaker with PWM driver

PubNub pn(pubkey, subkey);

void status_msg(PubNub &pn)
{
    /* Read sensors. */
    int m[3];
    MMA.read(m[0], m[1], m[2]);
    float temp = (float)tmp;

    /* Print on LCD. */
    pc.printf("pub: mx=%3d, my=%3d, mz=%3d, t=%.2f  \n", m[0], m[1], m[2], temp);

    /* Prepare JSON message. */
    char jsonmsg[128];
    snprintf(jsonmsg, sizeof(jsonmsg),
            "{\"status\":{\"mx\":%3d,\"my\":%3d,\"mz\":%3d,\"temp\":%.2f}}",
            m[0], m[1], m[2], temp);

#if 0
    /* In some rare situations, you might want to instead use picojson
     * to construct JSON messages, even though it takes a lot of memory: */

    printf("%d: ", __LINE__); __heapstats((__heapprt)fprintf, stdout);
    picojson::value msg(picojson::object_type, false);
    picojson::object &msgo = msg.get<picojson::object>();
    msgo["status"] = picojson::value(picojson::object_type, false);
    picojson::object &status = msgo["status"].get<picojson::object>();
    status["mx"] = picojson::value(double(mx));
    status["my"] = picojson::value(double(my));
    status["temp"] = picojson::value(temp);
    strcpy(jsonmsg, msg.serialize().c_str());
    printf("%d: ", __LINE__); __heapstats((__heapprt)fprintf, stdout);
#endif

    /* Publish on PubNub. */
    PubNubRes ret = pn.publish(channel, jsonmsg);
    if (ret != PNR_OK)
        pc.printf("puberr: %d  \n", ret);
}

void process_msg(PubNub &pn, const char *jsonmsg)
{
    /* Use the picojson parser since we want to deal with complex messages.
     * If you are short on memory, you can find an example for parsing simple
     * JSON messages in the PubNub::subscribe() API docs. */
    picojson::value msg;
    std::string err = picojson::parse(msg, jsonmsg, jsonmsg + strlen(jsonmsg));
    if (!err.empty()) {
        pc.printf("JSON parse: %s  \n", err.c_str());
        return;
    }

    if (msg.get("send_status").get<bool>()) {
        status_msg(pn);
    }
    if (msg.get("lcd").is<std::string>()) {
        pc.printf("in: %s  \n", msg.get("lcd").get<std::string>().c_str());
    }
    if (msg.get("beep").is<bool>()) {
        //speaker = msg.get("beep").get<bool>() ? 0.5 : 0;
    }
    if (msg.get("led").is<picojson::object>()) {
        picojson::value led = msg.get("led");
        printf("Old RGB { %.3f, %.3f, %.3f }\n", led_r.read(), led_g.read(), led_b.read());
        if (led.get("r").is<double>()) led_r = 1.0 - led.get("r").get<double>();
        if (led.get("g").is<double>()) led_g = 1.0 - led.get("g").get<double>();
        if (led.get("b").is<double>()) led_b = 1.0 - led.get("b").get<double>();
        printf("New RGB { %.3f, %.3f, %.3f }\n", led_r.read(), led_g.read(), led_b.read());
    }
}

int main()
{
    /* For debugging, you may find it useful to print memory usage
     * stats. AvailableMemory may be flaky, but the following is nice.
     * It will get printed to the USB serial port interface. */
    //printf("%d: ", __LINE__); __heapstats((__heapprt)fprintf, stdout);

    /* Generate a 800Hz tone using PWM hardware output */
    //speaker.period(1.0/800.0); // 800hz period
    led_r = led_g = led_b = 1.0; // lights out

    //lcd.cls();
    //lcd.locate(0,0);
    
    if (!tmp.open())
        pc.printf("Failed to open LM75 temperature sensor\n");

//    if (!MMA.testConnection())
//        pc.printf("MMA error  \n");

    // Initialize the accelerometer
    if (!MMA.setMode(MMA7455::ModeMeasurement)) {
        printf("Unable to set mode for MMA7455!\n");
    }

    // Calibrate it. It does not matter if it is on a level surface
    // as this test is only interested in relative values.
    if (!MMA.calibrate()) {
        printf("Failed to calibrate MMA7455!\n");
    }

    MDMSerial mdm;
    //mdm.setDebug(4); // enable this for debugging issues 
    int i;
    for (i = 1; i <= 10; i++) {
        if (mdm.connect(SIMPIN, APN,USERNAME,PASSWORD)) {
            printf("Connected\n");
            mdm.setDebug(0); // disable debug again
            break;
        } else {
            printf("Attempt %2d to connect to the modem FAILED.\n", i);
            wait(1);
            mdm.setDebug(min(i, 4)); // to add more and more debug output
        }
    }
    if (i > 10) {
        printf("Failed to connect to the modem\n");
        mbed_die();
    }
    
    status_msg(pn);
    // lcd.printf("pub... ");

    while (1) {
        // lcd.printf("sub... ");
        //printf("%d: ", __LINE__); __heapstats((__heapprt)fprintf, stdout);
        printf(".\n");

        char *reply = NULL;
        PubNubRes ret = pn.subscribe(channel, &reply);
        if (ret != PNR_OK) {
            printf("suberr: %d  \n", ret);
            wait(1.0);
            continue;
        }

        if (reply) {
            printf("recv(%s)\n", reply);
            process_msg(pn, reply);
        }

        wait(0.5); // avoid busy loop in bad situations
        status_msg(pn);
    }

    mdm.disconnect();
    mdm.powerOff();
}