network.h 288 B

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