connect_wlan.h 330 B

12345678910111213
  1. #ifndef CONNECT_WLAN_H
  2. #define CONNECT_WLAN_H
  3. #include <string>
  4. #include "driver/gpio.h"
  5. const int CONNECTED_BIT = BIT0;
  6. void initialise_wifi(std::string _ssid, std::string _passphrase, std::string _hostname);
  7. void LoadWlanFromFile(std::string fn, std::string &_ssid, std::string &_passphrase, std::string &_hostname);
  8. #endif