Skip to content

Commit

Permalink
Support for Garage doors
Browse files Browse the repository at this point in the history
  • Loading branch information
rstrouse committed Aug 31, 2023
1 parent 64d7abd commit 92b9b67
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
Binary file modified SomfyController.ino.esp32.bin
Binary file not shown.
Binary file modified SomfyController.littlefs.bin
Binary file not shown.
3 changes: 2 additions & 1 deletion Web.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ void Web::startup() {
}
void Web::loop() {
server.handleClient();
yield();
delay(1);
apiServer.handleClient();
delay(1);
}
void Web::sendCORSHeaders(WebServer &server) {
//server.sendHeader(F("Connection"), F("Keep-Alive"));
Expand Down
8 changes: 4 additions & 4 deletions data/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<link rel="stylesheet" href="main.css?v=2.1.2" type="text/css" />
<link rel="stylesheet" href="widgets.css?v=2.1.2" type="text/css" />
<link rel="stylesheet" href="icons.css?v=2.1.2" type="text/css" />
<link rel="stylesheet" href="main.css?v=2.1.4" type="text/css" />
<link rel="stylesheet" href="widgets.css?v=2.1.4" type="text/css" />
<link rel="stylesheet" href="icons.css?v=2.1.4" type="text/css" />
<link rel="icon" type="image/png" href="favicon.png" />
<script type="text/javascript" src="index.js?v=2.1.2"></script>
<script type="text/javascript" src="index.js?v=2.1.4"></script>
</head>
<body>
<div id="divContainer" class="container main" data-auth="false">
Expand Down

0 comments on commit 92b9b67

Please sign in to comment.