cleanup and rollup
This commit is contained in:
0
ArduTracker.ino
Normal file → Executable file
0
ArduTracker.ino
Normal file → Executable file
0
EZ_Antenna_Tracker___Ground_Station_EZtracker_Immersion_RC.zip
Normal file → Executable file
0
EZ_Antenna_Tracker___Ground_Station_EZtracker_Immersion_RC.zip
Normal file → Executable file
0
WrittenGS-Orbit-PayloadSpecNotes.PDF → GroundStation-WrittenNotes.pdf
Normal file → Executable file
0
WrittenGS-Orbit-PayloadSpecNotes.PDF → GroundStation-WrittenNotes.pdf
Normal file → Executable file
0
autotrack.diag
Normal file → Executable file
0
autotrack.diag
Normal file → Executable file
0
autotrack.png
Normal file → Executable file
0
autotrack.png
Normal file → Executable file
Before Width: | Height: | Size: 7.0 KiB After Width: | Height: | Size: 7.0 KiB |
@@ -1,11 +0,0 @@
|
|||||||
blockdiag {
|
|
||||||
Structure
|
|
||||||
Structure -> Building
|
|
||||||
Structure -> Building -> Hexayurt.com
|
|
||||||
Structure -> Foundation
|
|
||||||
Structure -> Power
|
|
||||||
Structure -> Power -> "Solar cells"
|
|
||||||
Structure -> Power -> "Charge controller"
|
|
||||||
Structure -> Power -> Batteries
|
|
||||||
Structure -> Power -> Inverter
|
|
||||||
}
|
|
Binary file not shown.
Before Width: | Height: | Size: 11 KiB |
20
index.html
20
index.html
@@ -1,20 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<title>Open MCT Tutorials</title>
|
|
||||||
<script src="node_modules/openmct/dist/openmct.js"></script>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<script>
|
|
||||||
openmct.setAssetPath('node_modules/openmct/dist');
|
|
||||||
openmct.install(openmct.plugins.LocalStorage());
|
|
||||||
openmct.install(openmct.plugins.MyItems());
|
|
||||||
openmct.install(openmct.plugins.UTCTimeSystem());
|
|
||||||
openmct.time.clock('local', {start: -15 * 60 * 1000, end: 0});
|
|
||||||
openmct.time.timeSystem('utc');
|
|
||||||
openmct.install(openmct.plugins.Espresso());
|
|
||||||
|
|
||||||
openmct.start();
|
|
||||||
</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
20
package.json
20
package.json
@@ -1,20 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "subo-openmct",
|
|
||||||
"version": "0.0.1",
|
|
||||||
"description": "Suborbital's implementation of Open MCT",
|
|
||||||
"main": "server/server.js",
|
|
||||||
"scripts": {
|
|
||||||
"start": "node server/server.js"
|
|
||||||
},
|
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "git+https://git.turnsys.com/Suborbital-Systems/OpenMCT.git"
|
|
||||||
},
|
|
||||||
|
|
||||||
"dependencies": {
|
|
||||||
"express": "^4.16.4",
|
|
||||||
"express-ws": "^4.0.0",
|
|
||||||
"openmct": "nasa/openmct",
|
|
||||||
"ws": "^6.1.2"
|
|
||||||
}
|
|
||||||
}
|
|
Binary file not shown.
@@ -1,15 +0,0 @@
|
|||||||
var StaticServer = require('./static-server');
|
|
||||||
|
|
||||||
var expressWs = require('express-ws');
|
|
||||||
var app = require('express')();
|
|
||||||
expressWs(app);
|
|
||||||
|
|
||||||
var staticServer = new StaticServer();
|
|
||||||
|
|
||||||
app.use('/', staticServer);
|
|
||||||
|
|
||||||
var port = process.env.PORT || 8080
|
|
||||||
|
|
||||||
app.listen(port, function () {
|
|
||||||
console.log('Open MCT hosted at http://localhost:' + port);
|
|
||||||
});
|
|
@@ -1,11 +0,0 @@
|
|||||||
var express = require('express');
|
|
||||||
|
|
||||||
function StaticServer() {
|
|
||||||
var router = express.Router();
|
|
||||||
|
|
||||||
router.use('/', express.static(__dirname + '/..'));
|
|
||||||
|
|
||||||
return router
|
|
||||||
}
|
|
||||||
|
|
||||||
module.exports = StaticServer;
|
|
Reference in New Issue
Block a user