Calculates azimuth and elevation of a satellite dish based on its longitude, latitude and selected satellite.

Dependencies:   PinDetect TextLCD mbed MODGPS

Revision:
0:fe8decc6a938
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Satellite.h	Thu Mar 29 09:26:14 2012 +0000
@@ -0,0 +1,21 @@
+#include <string>
+using namespace std;
+
+class Satellite
+{
+public:  
+  Satellite(string n, string c, float o, float i);
+  string getName();
+  string getCname();
+  float getOrbit();
+  float getInclination();
+  void setName(string n);
+  void setCname(string c);
+  void setOrbit(float o);
+  void setInclination(float i);
+private:
+  string name;  //name
+  string cname; // commen name
+  float orbit;
+  float inclination; 
+};
\ No newline at end of file