This repository has been archived by the owner on Oct 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from bram2202/develop
version/1.3.1 release
- Loading branch information
Showing
4 changed files
with
61 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,29 @@ | ||
//Hostname of ESP8266 | ||
#define WIFI_HOSTNAME "ESP-DSMR" | ||
|
||
//Wifi SSID to connect to | ||
#define WIFI_SSID "<wifi name>" | ||
|
||
//Passowrd for WIFI | ||
#define WIFI_PASSWORD "<wifi password>" | ||
|
||
//set the mqqt host name or ip address to your mqqt host. Leave empty to disable mqtt. | ||
#define MQTT_HOST_NAME "<MQTT broker>" | ||
|
||
//mqtt port for the above host | ||
#define MQTT_PORT 1883 | ||
|
||
//if authentication is enabled for mqtt, set the username below. Leave empty to disable authentication | ||
#define MQTT_USER_NAME "<MQTT user name>" | ||
|
||
//password for above user | ||
#define MQTT_PASSWORD "<MQTT password>" | ||
|
||
//publish online status name | ||
#define MQTT_HOSTNAME "ESP-DSMR" | ||
|
||
//for debugging, print info on serial (DEBUG, INFO, WARN) | ||
#define LOG_LEVEL INFO | ||
// Hostname of ESP8266 | ||
#define WIFI_HOSTNAME "ESP-DSMR" | ||
|
||
// Wifi SSID to connect to | ||
#define WIFI_SSID "<wifi name>" | ||
|
||
// Passowrd for WIFI | ||
#define WIFI_PASSWORD "<wifi password>" | ||
|
||
// Set the mqqt host name or ip address to your mqqt host. Leave empty to disable mqtt. | ||
#define MQTT_BROKER "<MQTT broker address>" | ||
|
||
// Mqtt port for the above host | ||
#define MQTT_PORT 1883 | ||
|
||
// If authentication is enabled for mqtt, set the username below. Leave empty to disable authentication | ||
#define MQTT_USER_NAME "<MQTT user name>" | ||
|
||
// Password for above user | ||
#define MQTT_PASSWORD "<MQTT password>" | ||
|
||
// Setup gas entity in HA | ||
#define AUTOCONFIG_GAS true | ||
|
||
// Setup all power entities in HA | ||
#define AUTOCONFIG_POWER_EXTENDED true | ||
|
||
//for debugging, print info on serial (DEBUG, INFO, WARN) | ||
#define LOG_LEVEL INFO |