network.h 288 B

1234567891011121314
  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. extern void httpGet(char address[], void (*parser)(char*));
  10. char* getMacAdress(void);
  11. #endif /* _Network_H */