We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 707fae9 commit 7347235Copy full SHA for 7347235
components/miot/miot.cpp
@@ -55,8 +55,12 @@ void Miot::setup() {
55
rx_count_ = 0;
56
}
57
58
- queue_command("MIIO_mcu_version_req");
+ // these two commands have to be the first two in that order to get
59
+ // the deerma.humidifier.jsq5 mcu into its main app loop
60
queue_net_change_command(true);
61
+ queue_command("none");
62
+
63
+ queue_command("MIIO_mcu_version_req");
64
65
this->set_interval("poll", 60000, [this] {
66
std::string cmd, part;
0 commit comments