| 1234567891011 |
- const int baud = 115200; // serial baud rate
- const char *host = "HawkBandAP"; // ap name for mdns
- const char *ssid = "HawkBandLED"; // SSID Name
- const char *password = "j0inth3n3tw0rk"; // SSID Password - Set to NULL to have an open AP
- const int channel = 7; // WiFi Channel number between 1 and 13
- const bool hide_SSID = false; // To disable SSID broadcast -> SSID will not appear in a basic WiFi scan
- const int max_connection = 25; // Maximum simultaneous connected clients on the AP
- const int port = 80;
- const IPAddress ip(10, 10, 10, 1);
- const IPAddress subnet(255, 255, 255, 0);
|