Skip to content

Commit

Permalink
Added blinds as a shade type
Browse files Browse the repository at this point in the history
  • Loading branch information
rstrouse committed Mar 4, 2023
1 parent 0f2f30b commit c9f3e79
Show file tree
Hide file tree
Showing 11 changed files with 647 additions and 117 deletions.
2 changes: 1 addition & 1 deletion ConfigSettings.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#ifndef configsettings_h
#define configsettings_h

#define FW_VERSION "v1.3.0"
#define FW_VERSION "v1.3.1"
enum DeviceStatus {
DS_OK = 0,
DS_ERROR = 1,
Expand Down
2 changes: 1 addition & 1 deletion Network.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ bool Network::connectWiFi() {
return false;
}
bool Network::connect() {
if(settings.connType != conn_types::wifi && !this->wifiFallback)
if(settings.connType != conn_types::wifi && settings.connType != conn_types::unset && !this->wifiFallback)
return this->connectWired();
return this->connectWiFi();
}
Expand Down
Loading

0 comments on commit c9f3e79

Please sign in to comment.