![](/media/cache/profiles/b5c4ec91390a6fbccf8d918d443563ed.jpg.50x50_q85.jpg)
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
UBloxSara/udp.h
- Committer:
- jurica238814
- Date:
- 2018-12-19
- Revision:
- 9:f943c09d9173
- Parent:
- 8:2bf886335fd0
File content as of revision 9:f943c09d9173:
/* * U-Blox SARA UDP class * Made by Jurica @ aconno * More info @ aconno.de */ #ifndef __UDP_H__ #define __UDP_H__ #include "mbed.h" class Udp { public: Udp(char *ip, int port); uint8_t open(); uint8_t close(); char *_ip; int _port; private: protected: }; #endif //__UDP_H__