Skip to content

Commit

Permalink
Fix default credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
DrA1ex committed Sep 8, 2024
1 parent 4f77a3a commit 23ff708
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/credentials.h
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#pragma once

#define CREDENTIAL_WIFI_SSID "ESP_LED"
#define CREDENTIAL_WIFI_PASSWORD "12345678"
#define WIFI_SSID "ESP_LED"
#define WIFI_PASSWORD "12345678"

#define CREDENTIAL_AUTH_USER "esp_lamp"
#define CREDENTIAL_AUTH_PASSWORD "password"
#define AUTH_USER "esp_lamp"
#define AUTH_PASSWORD "password"

#define MQTT_HOST "example.com"
#define MQTT_PORT (1234u)
#define MQTT_USER "esp_user"
#define MQTT_PASSWORD "esp_pass"
#define MQTT_HOST "example.com"
#define MQTT_PORT (1234u)
#define MQTT_USER "esp_user"
#define MQTT_PASSWORD "esp_pass"

0 comments on commit 23ff708

Please sign in to comment.