Skip to content

Commit

Permalink
Add EByte Manager that work like gateway and Web Interface Manager
Browse files Browse the repository at this point in the history
  • Loading branch information
xreef committed Jul 20, 2021
1 parent f13ac9b commit ed2b46b
Show file tree
Hide file tree
Showing 34 changed files with 2,118 additions and 2 deletions.
2 changes: 1 addition & 1 deletion LoRa_E32.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* EBYTE LoRa E32 Series
*
* AUTHOR: Renzo Mischianti
* VERSION: 1.0.0
* VERSION: 1.5.2
*
* https://www.mischianti.org/category/my-libraries/lora-e32-devices/
*
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
29 changes: 29 additions & 0 deletions examples/esp32_e32_web_manager_gateway/data/index.html
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.
1 change: 1 addition & 0 deletions examples/esp32_e32_web_manager_gateway/data/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
var settings = {"localRestPort":8080, "localWSPort":8081};
Loading

0 comments on commit ed2b46b

Please sign in to comment.