network.h 311 B

1234567891011121314151617
  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. void parseAlarmJson(char* content);
  12. int getTimeZone(void);
  13. #endif /* _Network_H */