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: Watchdog mbed Schedule SimpleFilter LSM303DLM PinDetect DebounceIn Servo
GPSStatus.h
00001 #ifndef __GPSSTATUS_H 00002 #define __GPSSTATUS_H 00003 00004 #include "SerialGraphicLCD.h" 00005 00006 class GPSStatus { 00007 public: 00008 GPSStatus(int x, int y); 00009 void init(); 00010 void update(float hdop); 00011 00012 static SerialGraphicLCD *lcd; 00013 00014 private: 00015 int _x; 00016 int _y; 00017 int _s; 00018 float _min; 00019 float _max; 00020 char _n; 00021 int _last; 00022 }; 00023 00024 #endif
Generated on Tue Jul 12 2022 14:09:25 by
1.7.2