network.h 310 B

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