wifi.h 218 B

1234567891011121314151617
  1. #ifndef __WIFI__
  2. #define __WIFI__
  3. #include <stdint.h>
  4. void setupWifi();
  5. int sendDataToServer(int type,unsigned int data);
  6. char * sendTCPData(char *data);
  7. void activateESP8266();
  8. void deactivateESP8266();
  9. #endif