a
Revision 7:0e4a9af28352, committed 2019-04-18
- Comitter:
- ConfigArray
- Date:
- Thu Apr 18 10:53:26 2019 +0000
- Parent:
- 6:8db0d3b02cec
- Commit message:
- a
Changed in this revision
GSM.h | Show annotated file Show diff for this revision Revisions of this file |
diff -r 8db0d3b02cec -r 0e4a9af28352 GSM.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/GSM.h Thu Apr 18 10:53:26 2019 +0000 @@ -0,0 +1,35 @@ +#ifndef GSM_H +#define GSM_H +#include <string> + +struct SystemState +{ + string ID; + float BatteryVoltage; + int StrokeCount; + string Position; + + int TorqueLimit; + int SpeedSetting; + int SigStrength; + int ActuatorOrientation; + int SunPosition; + int SunStrength; + int PingRate; +}; + + + +extern Serial pc; +extern Serial GSM; +extern Serial ODrive; +extern struct SystemState StateNow; +extern void GSMGetLine(void); +extern void GSMSetUp(void); +extern int CheckGSM(int); +extern void DeleteMSG(void); +extern +void LEDSnazz(int); + +#endif +