You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 line
252 B

  1. #pragma once
  2. #include "Time.h"
  3. #define GPS_POSITION_SIZE 128
  4. namespace gps {
  5. char lastPosition[GPS_POSITION_SIZE];
  6. SIM808_GPS_STATUS lastStatus;
  7. void powerOn();
  8. void powerOff();
  9. SIM808_GPS_STATUS acquireCurrentPosition();
  10. Time getTime();
  11. }