Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed MODSERIAL ADXL345 MODGPS
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
Generated on Tue Jul 12 2022 15:22:49 by
