Tracks GPS coordinates of an asset. Uses: GPS GSM Accelerometer mbed

Dependencies:   mbed MODSERIAL ADXL345 MODGPS

sms.h

Committer:
gsulc
Date:
2012-05-04
Revision:
0:4415987ca08f

File content as of revision 0:4415987ca08f:

// Library for sending GSM SMS Messages

#ifndef _SMS_H_
#define _SMS_H_

#include "mbed.h"
#include "MODSERIAL.h"
#include <string>

#define SUB 0x1A    // substition char for Ctrl+Z

void GSM_init();
void send_SMS(string phoneNumber, string text);
void check_SMS();
int messageProcess();
void messageReceive(MODSERIAL_IRQ_INFO *q);

#endif