Gordon Sulc / Mbed 2 deprecated AntiTheftGPS

Dependencies:   mbed MODSERIAL ADXL345 MODGPS

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers sms.h Source File

sms.h

00001 // Library for sending GSM SMS Messages
00002 
00003 #ifndef _SMS_H_
00004 #define _SMS_H_
00005 
00006 #include "mbed.h"
00007 #include "MODSERIAL.h"
00008 #include <string>
00009 
00010 #define SUB 0x1A    // substition char for Ctrl+Z
00011 
00012 void GSM_init();
00013 void send_SMS(string phoneNumber, string text);
00014 void check_SMS();
00015 int messageProcess();
00016 void messageReceive(MODSERIAL_IRQ_INFO *q);
00017 
00018 #endif