-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add EByte Manager that work like gateway and Web Interface Manager
- Loading branch information
Showing
34 changed files
with
2,118 additions
and
2 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
Binary file added
BIN
+15.1 KB
examples/esp32_e32_web_manager_gateway/data/android-icon-144x144.png.gz
Binary file not shown.
Binary file added
BIN
+22.6 KB
examples/esp32_e32_web_manager_gateway/data/android-icon-192x192.png.gz
Binary file not shown.
Binary file added
BIN
+2.01 KB
examples/esp32_e32_web_manager_gateway/data/android-icon-36x36.png.gz
Binary file not shown.
Binary file added
BIN
+3.03 KB
examples/esp32_e32_web_manager_gateway/data/android-icon-48x48.png.gz
Binary file not shown.
Binary file added
BIN
+5.43 KB
examples/esp32_e32_web_manager_gateway/data/android-icon-72x72.png.gz
Binary file not shown.
Binary file added
BIN
+8.33 KB
examples/esp32_e32_web_manager_gateway/data/android-icon-96x96.png.gz
Binary file not shown.
Binary file added
BIN
+471 KB
examples/esp32_e32_web_manager_gateway/data/ebyte-manager-web.min.js.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<!doctype html> | ||
<meta charset="utf-8"/> | ||
|
||
<meta http-equiv="Cache-Control" content="public"> | ||
<!-- Add manifest --> | ||
<link rel="manifest" href="manifest.json"> | ||
<!-- Tell the browser it's a PWA --> | ||
<meta name="mobile-web-app-capable" content="yes"> | ||
<!-- Tell iOS it's a PWA --> | ||
<meta name="apple-mobile-web-app-capable" content="yes"> | ||
<!-- Make sure theme-color is defined --> | ||
<meta name="theme-color" content="#536878"> | ||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> | ||
|
||
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon"> | ||
<link rel="icon" href="/favicon.ico" type="image/x-icon"> | ||
|
||
<title>EByte Manager</title> | ||
<body> | ||
<div id="root" class="app-container"></div> | ||
|
||
<script id="settings" src="settings.json"></script> | ||
<script language="javascript" type="text/javascript"> | ||
var d = new Date(); | ||
document.getElementById("settings").src = "settings.json?v=" +d.getTime(); | ||
</script> | ||
|
||
<script src="ebyte-manager-web.min.js?v=20200827165746"></script> |
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
var settings = {"localRestPort":8080, "localWSPort":8081}; |
Oops, something went wrong.