config.h 661 B

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