portable version of the cumulocity demo

Dependencies:   C027_Support C12832 LM75B MMA7660 MbedSmartRest mbed-rtos mbed

Fork of MbedSmartRestMain by Cumulocity Official

DeviceIO.cpp

Committer:
Cumulocity
Date:
2014-07-24
Revision:
47:89ae46d5c466
Parent:
46:f6976fd64387
Child:
52:8f1370084268

File content as of revision 47:89ae46d5c466:

#include "DeviceIO.h"

DeviceIO::DeviceIO(GPSI2C& gps) :
    _gpsTracker(gps),
    _resetButton(D4), // fire button on arduino app shield
    _analog1(A0),
    _analog2(A1),
    _temperatureSensor(SDA,SCL),
    _accelerometer(SDA,SCL),
    _lcd(D11, D13, D12, D7, D10)
{
}

bool DeviceIO::resetButtonPressed()
{
    return _resetButton;
}

GPSTracker& DeviceIO::gpsTracker()
{
    return _gpsTracker;
}

AnalogIn& DeviceIO::analog1()
{
    return _analog1;
}

AnalogIn& DeviceIO::analog2()
{
    return _analog2;
}
LM75B& DeviceIO::temperatureSensor()
{
    return _temperatureSensor;
}

MMA7660& DeviceIO::accelerometer()
{
    return _accelerometer;
}

void DeviceIO::lcdPrint(const char *line1, const char *line2, const char *line3)
{
    _lcd.cls();
    _lcd.locate(0, 0);
    _lcd.printf("%s\n", line1);
    if (line2 != NULL) {
        _lcd.printf("%s\n", line2);
        if (line3 != NULL)
            _lcd.printf("%s\n", line3);
    }
}