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.

19 lines
298 B

  1. #pragma once
  2. #include <Arduino.h>
  3. #include "Debug.h"
  4. #include "Gps.h"
  5. #include "MainUnit.h"
  6. #include "Network.h"
  7. #include "Rtc.h"
  8. #include "Pins.h"
  9. #include "Positions.h"
  10. namespace core {
  11. extern uint16_t sleepTime;
  12. void main();
  13. void setSleepTime(uint8_t velocity);
  14. void updateSleepTime();
  15. }