network.h 333 B

123456789101112131415161718
  1. //
  2. // Created by janco on 25-2-16.
  3. //
  4. #ifndef _Network_H
  5. #define _Network_H
  6. #include "typedefs.h"
  7. bool hasNetworkConnection(void);
  8. bool NetworkIsReceiving(void);
  9. extern void NetworkInit(void);
  10. char* httpGet(char address[]);
  11. char* getMacAdress();
  12. void parseAlarmJson(char* content);
  13. int getTimeZone(void);
  14. #endif /* _Network_H */