The program sends the current location over the cellular network.

Dependencies:   aconno_I2C ublox-at-cellular-interface gnss ublox-cellular-base Lis2dh12 ublox-cellular-base-n2xx ublox-at-cellular-interface-n2xx low-power-sleep

Fork of example-gnss by u-blox

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers udp.h Source File

udp.h

00001 /*
00002  * U-Blox SARA UDP class
00003  * Made by Jurica @ aconno
00004  * More info @ aconno.de
00005  */
00006 
00007 #ifndef __UDP_H__
00008 #define __UDP_H__
00009 
00010 #include "mbed.h"
00011 
00012 class Udp
00013 {
00014     public:
00015         Udp(char *ip, int port);
00016         uint8_t open();
00017         uint8_t close();
00018         char *_ip;
00019         int _port;
00020     private:
00021     protected:
00022 };
00023 
00024 #endif  //__UDP_H__