connect_lan.h 351 B

1234567891011121314151617181920
  1. #if defined(BOARD_ESP32_S3_ALEKSEI)
  2. #pragma once
  3. #ifndef CONNECT_LAN_H
  4. #define CONNECT_LAN_H
  5. #include <string>
  6. // #include "connect_wlan.h"
  7. // int wifi_init_sta(void);
  8. std::string* getLanIPAddress();
  9. // int get_WIFI_RSSI();
  10. std::string* getLanHostname();
  11. bool getLanIsConnected();
  12. void LanDestroy();
  13. int lan_init();
  14. #endif //CONNECT_WLAN_H
  15. #endif