Skip to content

Commit

Permalink
fix(mqtt): missing / in set_fan_speed topic
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkn authored and Hypfer committed Jan 9, 2021
1 parent 7c5e231 commit 26ceb95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mqtt/MqttAutoConfManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class MqttAutoConfManager { //TODO: does this thing even make sense?
availability: this.topicPrefix + "/" + this.identifier + "/status",
command: this.topicPrefix + "/" + this.identifier + "/command",
state: this.topicPrefix + "/" + this.identifier + "/state",
set_fan_speed: this.topicPrefix + "/" + this.identifier + "set_fan_speed",
set_fan_speed: this.topicPrefix + "/" + this.identifier + "/set_fan_speed",

custom_command: this.topicPrefix + "/" + this.identifier + "/custom_command", //TODO: maybe merge this with the regular command topic?

Expand Down

0 comments on commit 26ceb95

Please sign in to comment.