-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added webinterface for single rotator and improved hub class
- Loading branch information
Showing
28 changed files
with
2,000 additions
and
75 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ remoteRotator | |
*.zip | ||
*.tar.gz | ||
*.tgz | ||
hub/rice-box.go |
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
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
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
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
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,40 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<title>RemoteRotator WebUI</title> | ||
<link rel="stylesheet" href="/static/css/font-awesome.min.css"> | ||
<link rel="stylesheet" href="/static/css/bootstrap.min.css"> | ||
<link rel="stylesheet" href="/static/css/style.css"> | ||
</head> | ||
|
||
<body> | ||
<div id="app"> | ||
<div class="main-rotator"> | ||
<azimuth-rotator v-on:set-azimuth="setAzimuth" :name="azName" :heading="azHeading" :preset="azPreset" :enabled="azEnabled" | ||
:canvas-size="azCanvasSize"></azimuth-rotator> | ||
</div> | ||
<div id="mini-rotators" class="hidden"> | ||
</div> | ||
<div id="connection"> | ||
<p id="connected" class="bg-success" v-bind:class="{'hidden': hideConnectionMsg}" v-if="connected"> | ||
<i class="fa fa-check"></i> Connected to Server | ||
</p> | ||
<p id="no-connection" class="bg-danger" v-else="connected"> | ||
<i class="fa fa-spinner fa-spin" aria-hidden="true"></i> Connecting to Server | ||
</p> | ||
</div> | ||
</div> | ||
<script src="/static/js/vue.js"></script> | ||
<script src="/static/js/vue-resource-1.3.4.min.js"></script> | ||
<script src="/static/js/components/azimuth-rotator.js"></script> | ||
<script src="/static/js/jquery-2.2.3.min.js"></script> | ||
<script src="/static/js/bootstrap.min.js"></script> | ||
<script src="/static/js/reconnecting-websocket.js"></script> | ||
<script src="/static/js/app.js"></script> | ||
</body> | ||
|
||
</html> |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.