├── .gitignore ├── .jsbeautifyrc ├── .jshintignore ├── .scrutinizer.yml ├── .vscode ├── launch.json └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── ARCHITECTURE-PLUGINS.md ├── CREATING-PLUGINS.md ├── DEV-HOWTO.md ├── MESSAGING.md ├── UI-ARCHITECTURE.md └── WORKING-WITH-HARDWARE.md ├── gruntfile.js ├── install_lib ├── bower_install_all.js ├── bower_upgrade_all.js ├── npm_install_all.js ├── npm_shrinkwrap_all.js ├── npm_shrinkwrap_removeOptionalDeps.js ├── npm_upgrade_all.js ├── openrov-cockpit-afterinstall.sh ├── openrov-cockpit-beforeinstall.sh └── openrov-cockpit-beforeremove.sh ├── jsconfig.json ├── npm-shrinkwrap.json ├── package-deb.sh ├── package.json ├── publish-deb.sh ├── shrinkwrap.yaml ├── src ├── .foreverignore ├── .gitignore ├── README.md ├── beta-plugins │ ├── basictheme │ │ ├── header.ejs │ │ ├── index.js │ │ └── public │ │ │ └── css │ │ │ └── basictheme.css │ ├── capestatus │ │ ├── index.js │ │ └── public │ │ │ ├── css │ │ │ └── style.css │ │ │ └── js │ │ │ └── capestatus.js │ ├── classic-ui │ │ ├── cockpit.ejs │ │ ├── cockpit.ejs.icon │ │ ├── header.ejs │ │ ├── index.js │ │ └── public │ │ │ ├── bower.json │ │ │ ├── css │ │ │ ├── bootstrap-responsive.css │ │ │ ├── bootstrap-responsive.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ │ ├── js │ │ │ └── classic-ui.js │ │ │ └── webcomponents │ │ │ ├── capestatus-footer.html │ │ │ ├── classic-ui.html │ │ │ ├── gamepad.html │ │ │ ├── holds.html │ │ │ └── img │ │ │ ├── gamepad.png │ │ │ ├── keyboard.png │ │ │ ├── laser_off.png │ │ │ ├── laser_on.png │ │ │ └── openrov.png │ ├── engineering-panel │ │ ├── eng.ejs │ │ ├── eng.ejs.icon │ │ ├── index.js │ │ └── public │ │ │ ├── js │ │ │ └── engineeringpanel.js │ │ │ └── webcomponents │ │ │ ├── js │ │ │ └── d3.min.js │ │ │ ├── orov-engineering-button.html │ │ │ ├── orov-engineering-chart.html │ │ │ └── orov-engineering-widget.html │ ├── gps │ │ ├── index.js │ │ ├── map.ejs │ │ ├── map.ejs.icon │ │ ├── npm-shrinkwrap.json │ │ ├── package.json │ │ ├── public │ │ │ ├── bower.json │ │ │ ├── js │ │ │ │ └── GPS.js │ │ │ └── webcomponents │ │ │ │ ├── data │ │ │ │ ├── KML.js │ │ │ │ ├── KML_Samples.kml │ │ │ │ ├── Layer0.png │ │ │ │ └── doc.kml │ │ │ │ └── orov-map.html │ │ ├── shrinkwrap.yaml │ │ └── yarn.lock │ ├── headsup-menu │ │ ├── index.js │ │ └── public │ │ │ ├── bower.json │ │ │ ├── js │ │ │ └── headsup-menu.js │ │ │ └── webcomponents │ │ │ └── orov-headsup-menu.html │ ├── internet-control │ │ ├── README.md │ │ ├── index.js │ │ ├── npm-shrinkwrap.json │ │ ├── package.json │ │ ├── public │ │ │ ├── bower.json │ │ │ ├── js │ │ │ │ └── internet-control.js │ │ │ └── webcomponents │ │ │ │ ├── orov-internetControl-pilotselector.html │ │ │ │ └── orov-internetControl-status.html │ │ ├── shrinkwrap.yaml │ │ └── yarn.lock │ └── videofilter-edge-threejs │ │ ├── index.js │ │ └── public │ │ ├── bower.json │ │ └── js │ │ └── videofilter.js ├── cockpit.js ├── dev-plugins │ ├── serial-monitor │ │ ├── index.js │ │ ├── mcu-term.ejs │ │ ├── mcu-term.ejs.icon │ │ └── public │ │ │ ├── css │ │ │ └── style.css │ │ │ ├── js │ │ │ ├── serial-monitor-widgets-autodiscovery.js │ │ │ └── serial-monitor.js │ │ │ └── webcomponents │ │ │ └── orov-serial-monitor.html │ ├── theme_r2 │ │ ├── cockpit.ejs │ │ ├── index.js │ │ └── public │ │ │ ├── css │ │ │ └── theme_r2.css │ │ │ └── js │ │ │ ├── lib │ │ │ └── widget-layout-manager.js │ │ │ └── theme_r2_index.js │ └── widget-list │ │ ├── index.js │ │ ├── public │ │ └── webcomponents │ │ │ └── orov-widget-list-panel.html │ │ └── widgets.ejs ├── lib │ ├── AppFramework.js │ ├── ArduinoBuilder.js │ ├── ArduinoHelper.js │ ├── CockpitMessaging.js │ ├── Installer.js │ ├── Listener.js │ ├── ObjectPool.js │ ├── Periodic.js │ ├── PluginLoader.js │ ├── adjustments.json │ ├── array-includes-pollyfill.js │ ├── cleanCacheFolders.js │ ├── cockpitversion.js │ ├── config.js │ ├── logger.js │ ├── orov.TranslationResourceManager.js │ └── orutils.js ├── plugins │ ├── about │ │ ├── README.md │ │ ├── about.ejs │ │ ├── about.ejs.icon │ │ ├── index.js │ │ └── public │ │ │ └── js │ │ │ └── about.js │ ├── blackbox │ │ ├── index.js │ │ └── public │ │ │ ├── bower.json │ │ │ ├── js │ │ │ ├── blackbox.js │ │ │ └── lib │ │ │ │ ├── idb.js │ │ │ │ └── sw.js │ │ │ └── webcomponents │ │ │ ├── orov-blackbox-downloader.html │ │ │ ├── orov-blackbox-status.html │ │ │ ├── orov-blackbox-switch-behavior.html │ │ │ ├── orov-blackbox-switch.html │ │ │ └── orov-blackbox.html │ ├── camera-servo │ │ ├── README.md │ │ ├── index.js │ │ └── public │ │ │ ├── js │ │ │ ├── camera-servo-widgets-autodiscovery.js │ │ │ └── camera-servo.js │ │ │ └── webcomponents │ │ │ └── orov-servo-tilt.html │ ├── classic-control-mapping │ │ └── index.js │ ├── connection-health │ │ ├── index.js │ │ └── public │ │ │ ├── css │ │ │ └── style.css │ │ │ ├── js │ │ │ └── connection-health.js │ │ │ └── webcomponents │ │ │ ├── orov-connection-health.html │ │ │ └── orov-ping-graph.html │ ├── controllerboard2x │ │ ├── index.js │ │ └── public │ │ │ ├── js │ │ │ ├── systemEnvironment.js │ │ │ ├── systemPower.js │ │ │ └── telemetryToSystemPower.js │ │ │ └── webcomponents │ │ │ ├── orov-battery-status.html │ │ │ ├── orov-esc-switch-behavior.html │ │ │ ├── orov-esc-switch.html │ │ │ ├── orov-power-behavior.html │ │ │ ├── orov-time-behavior.html │ │ │ └── orov-time.html │ ├── data-viewer │ │ ├── data.ejs │ │ ├── data.ejs.icon │ │ ├── index.js │ │ └── public │ │ │ └── js │ │ │ └── dataviewer.js │ ├── diveprofile │ │ ├── diveprofile.ejs │ │ ├── diveprofile.ejs.icon │ │ ├── index.js │ │ └── public │ │ │ └── js │ │ │ └── diveprofile.js │ ├── example │ │ ├── index.js │ │ ├── public │ │ │ ├── css │ │ │ │ └── style.css │ │ │ ├── js │ │ │ │ ├── example-widgets-autodiscovery.js │ │ │ │ └── example.js │ │ │ ├── tests │ │ │ │ └── test.html │ │ │ └── webcomponents │ │ │ │ └── example.html │ │ └── tests │ │ │ └── index.js │ ├── externallights │ │ ├── index.js │ │ └── public │ │ │ ├── js │ │ │ ├── externallights-widgets-autodiscovery.js │ │ │ └── externallights.js │ │ │ └── webcomponents │ │ │ ├── img │ │ │ └── brightness.png │ │ │ ├── orov-elight-switch-behavior.html │ │ │ ├── orov-elight-switch.html │ │ │ └── orov-external-brightness-indicator.html │ ├── geomuxp │ │ ├── README.md │ │ ├── geomux.ejs │ │ ├── geomux.ejs.icon │ │ ├── index.js │ │ ├── npm-shrinkwrap.json │ │ ├── package.json │ │ ├── public │ │ │ ├── bower.json │ │ │ ├── js │ │ │ │ └── geomuxp.js │ │ │ └── webcomponents │ │ │ │ └── orov-geomux.html │ │ ├── shrinkwrap.yaml │ │ └── yarn.lock │ ├── host-diagnostics │ │ ├── README.md │ │ ├── index.js │ │ └── public │ │ │ ├── js │ │ │ ├── host-diagnostics-widgets-autodiscovery.js │ │ │ ├── host-diagnostics.js │ │ │ └── logcapture.js │ │ │ └── webcomponents │ │ │ ├── events-graph.html │ │ │ └── javascript-loopspeed.html │ ├── imu │ │ ├── imu.ejs │ │ ├── imu.ejs.icon │ │ ├── index.js │ │ └── public │ │ │ └── js │ │ │ └── imu.js │ ├── input-configurator │ │ ├── README.md │ │ ├── index.js │ │ ├── input.ejs │ │ ├── input.ejs.icon │ │ └── public │ │ │ ├── bower.json │ │ │ ├── configurator.html │ │ │ ├── configuratorDialog.html │ │ │ ├── js │ │ │ ├── input-configurator-widgets-autodiscovery.js │ │ │ └── input-configurator.js │ │ │ └── webcomponents │ │ │ ├── MouseTrapExtension.js │ │ │ └── orov-input-configurator.html │ ├── internet-stream │ │ ├── README.md │ │ ├── index.js │ │ └── public │ │ │ ├── bower.json │ │ │ ├── js │ │ │ └── internet-stream.js │ │ │ └── webcomponents │ │ │ ├── orov-streaming-switch-behavior.html │ │ │ ├── orov-streaming-switch.html │ │ │ ├── orov-twitch-stream-status-behavior.html │ │ │ └── orov-twitch-stream-status.html │ ├── lasers │ │ ├── index.js │ │ └── public │ │ │ ├── js │ │ │ ├── laser-widgets-autodiscovery.js │ │ │ └── laser.js │ │ │ └── webcomponents │ │ │ ├── orov-laser-switch-behavior.html │ │ │ ├── orov-laser-switch.html │ │ │ └── orov-lasers.html │ ├── lights │ │ ├── index.js │ │ └── public │ │ │ ├── js │ │ │ ├── lights-widgets-autodiscovery.js │ │ │ └── lights.js │ │ │ └── webcomponents │ │ │ ├── brightness-indicator.html │ │ │ ├── orov-light-switch-behavior.html │ │ │ └── orov-light-switch.html │ ├── local-media-hardware │ │ ├── README.md │ │ ├── index.js │ │ └── public │ │ │ └── js │ │ │ └── local-media-hardware.js │ ├── mjpeg-video │ │ ├── index.js │ │ ├── mjpeg.ejs │ │ ├── mjpeg.ejs.icon │ │ ├── npm-shrinkwrap.json │ │ ├── package.json │ │ ├── public │ │ │ ├── js │ │ │ │ └── mjpeg-video.js │ │ │ └── webcomponents │ │ │ │ ├── mjpeg-packet-video.html │ │ │ │ └── orov-mjpeg.html │ │ ├── shrinkwrap.yaml │ │ └── yarn.lock │ ├── mobile-ui │ │ ├── cockpit.ejs │ │ ├── cockpit.ejs.icon │ │ ├── head.ejs │ │ ├── header.ejs │ │ ├── index.js │ │ ├── network.ejs │ │ ├── network.ejs.icon │ │ ├── public │ │ │ ├── bower.json │ │ │ ├── css │ │ │ │ └── style.css │ │ │ ├── js │ │ │ │ ├── lib │ │ │ │ │ ├── 0_jquery.svg.min.js │ │ │ │ │ ├── 1_jquery.svgdom.min.js │ │ │ │ │ ├── 2_jquery.svganim.min.js │ │ │ │ │ └── three.min.js │ │ │ │ ├── mobile-ui.js │ │ │ │ └── third-party │ │ │ │ │ ├── 0_jquery.svg.min.js │ │ │ │ │ ├── 1_jquery.svgdom.min.js │ │ │ │ │ ├── 2_jquery.svganim.min.js │ │ │ │ │ └── threejs │ │ │ │ │ ├── DeviceOrientationControls.js │ │ │ │ │ ├── OrbitControls.js │ │ │ │ │ ├── StereoEffect.js │ │ │ │ │ └── three.js │ │ │ ├── textures │ │ │ │ └── patterns │ │ │ │ │ └── checker.png │ │ │ └── webcomponents │ │ │ │ ├── app-menu │ │ │ │ └── app-menu.html │ │ │ │ ├── dual-thumbstick │ │ │ │ ├── dual-thumbstick.html │ │ │ │ └── js │ │ │ │ │ ├── trackpad.js │ │ │ │ │ └── vector2.js │ │ │ │ ├── grid-menu │ │ │ │ ├── grid-menu-button.html │ │ │ │ └── grid-menu.html │ │ │ │ ├── orov-mobile-battery │ │ │ │ └── orov-mobile-battery.html │ │ │ │ ├── orov-mobile-compass │ │ │ │ └── orov-mobile-compass.html │ │ │ │ ├── orov-mobile-controls.html │ │ │ │ ├── orov-mobile-depth │ │ │ │ └── orov-mobile-depth.html │ │ │ │ ├── orov-window │ │ │ │ └── orov-window.html │ │ │ │ └── settings-menu │ │ │ │ └── settings-menu.html │ │ ├── social.ejs │ │ ├── social.ejs.icon │ │ ├── update.ejs │ │ ├── update.ejs.icon │ │ ├── vr.ejs │ │ └── vr.ejs.icon │ ├── navigation-data │ │ ├── index.js │ │ └── public │ │ │ ├── diagnostics.html │ │ │ ├── js │ │ │ └── navigation-data.js │ │ │ └── webcomponents │ │ │ ├── attitude-indicator.html │ │ │ ├── orov-horizon-behavior.html │ │ │ ├── orov-horizon.html │ │ │ └── topdowncompass.html │ ├── new-ui │ │ ├── cockpit.ejs │ │ ├── cockpit.ejs.icon │ │ ├── header.ejs │ │ ├── index.js │ │ ├── media │ │ │ ├── compasst.svg │ │ │ └── power.svg │ │ ├── new-ui.jpg │ │ ├── public │ │ │ ├── all-imports.html │ │ │ ├── bower.json │ │ │ ├── cockpit.ejs.png │ │ │ ├── css │ │ │ │ ├── classicstyle.css │ │ │ │ └── style.css │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── lib │ │ │ │ │ ├── 0_jquery.svg.min.js │ │ │ │ │ ├── 1_jquery.svgdom.min.js │ │ │ │ │ └── 2_jquery.svganim.min.js │ │ │ │ └── new-ui.js │ │ │ └── webcomponents │ │ │ │ ├── compass.html │ │ │ │ ├── depth.html │ │ │ │ ├── new-ui-styles.html │ │ │ │ ├── new-ui.html │ │ │ │ ├── power-slim.html │ │ │ │ ├── power.html │ │ │ │ ├── switches.html │ │ │ │ ├── throttle.html │ │ │ │ ├── time-slim.html │ │ │ │ └── time.html │ │ └── readme.md │ ├── notifications │ │ ├── README.md │ │ ├── index.js │ │ ├── npm-shrinkwrap.json │ │ ├── package.json │ │ ├── public │ │ │ ├── js │ │ │ │ └── notifications.js │ │ │ └── webcomponents │ │ │ │ └── orov-notifications.html │ │ ├── shrinkwrap.yaml │ │ └── yarn.lock │ ├── peer-view │ │ ├── _comms.ejs │ │ ├── _comms.ejs.icon │ │ ├── index.js │ │ ├── misctrl.ejs │ │ ├── misctrl.ejs.icon │ │ ├── missioncontrol │ │ │ └── cameras.ejs │ │ ├── npm-shrinkwrap.json │ │ ├── package.json │ │ ├── public │ │ │ ├── bower.json │ │ │ ├── js │ │ │ │ └── peerview.js │ │ │ └── webcomponents │ │ │ │ ├── orov-mc-assignments.html │ │ │ │ ├── orov-mc-status-indicator-behavior.html │ │ │ │ └── orov-mc-status-indicator.html │ │ ├── shrinkwrap.yaml │ │ └── yarn.lock │ ├── rov-default-applets │ │ ├── _system_diagnostics.ejs │ │ ├── index.js │ │ └── public │ │ │ └── js │ │ │ └── system_diagnostics.js │ ├── rovpilot-wire │ │ ├── README.md │ │ ├── index.js │ │ └── public │ │ │ ├── js │ │ │ ├── camera-tilt-widgets-autodiscovery.js │ │ │ └── rovpilot-wire.js │ │ │ ├── ui-templates.html │ │ │ └── webcomponents │ │ │ ├── orov-depthHold-switch-behavior.html │ │ │ ├── orov-depthHold-switch.html │ │ │ ├── orov-depthHold.html │ │ │ ├── orov-headingHold-switch-behavior.html │ │ │ ├── orov-headingHold-switch.html │ │ │ └── orov-headingHold.html │ ├── rovpilot │ │ ├── README.md │ │ ├── index.js │ │ └── public │ │ │ ├── js │ │ │ ├── rovpilot-widgets-autodiscovery.js │ │ │ └── rovpilot.js │ │ │ └── webcomponents │ │ │ └── orov-thrustfactor.html │ ├── system-greeting │ │ └── index.js │ ├── telemetry │ │ ├── README.md │ │ ├── index.js │ │ ├── public │ │ │ ├── bower.json │ │ │ ├── js │ │ │ │ ├── telemetry-widgets-autodiscovery.js │ │ │ │ └── telemetry.js │ │ │ └── webcomponents │ │ │ │ ├── orov-telemetry-monitor.html │ │ │ │ ├── telemetry-graph.html │ │ │ │ └── telemetry-item.html │ │ ├── telemetry.ejs │ │ └── telemetry.ejs.icon │ ├── thrusters2x1 │ │ ├── diagnostics.ejs │ │ ├── diagnostics.ejs.icon │ │ ├── index.js │ │ └── public │ │ │ ├── bower.json │ │ │ ├── js │ │ │ ├── thrusters2x1-widgets-autodiscovery.js │ │ │ └── thrusters2x1.js │ │ │ └── webcomponents │ │ │ └── orov-thrusters2x1-motortest.html │ ├── translations.en-US │ │ ├── classic-ui.json │ │ ├── index.js │ │ ├── mobile-ui.json │ │ ├── new-ui.json │ │ ├── newui-compass.json │ │ ├── newui-power.json │ │ ├── newui-time.json │ │ ├── orov-appletswitcher.json │ │ ├── orov-battery-status.json │ │ ├── orov-blackbox-downloader.json │ │ ├── orov-blackbox-status.json │ │ ├── orov-blackbox.json │ │ ├── orov-connection-health.json │ │ ├── orov-depthhold.json │ │ ├── orov-events-graph.json │ │ ├── orov-example.json │ │ ├── orov-external-brightness-indicator.json │ │ ├── orov-geomux.json │ │ ├── orov-headinghold.json │ │ ├── orov-headsup-menu.json │ │ ├── orov-horizon.json │ │ ├── orov-inputs-list.json │ │ ├── orov-internetcontrol-pilotselector.json │ │ ├── orov-internetcontrol-status.json │ │ ├── orov-lasers.json │ │ ├── orov-login.json │ │ ├── orov-mobile-battery.json │ │ ├── orov-mobile-compass.json │ │ ├── orov-mobile-controls.json │ │ ├── orov-mobile-depth.json │ │ ├── orov-newui-compass.json │ │ ├── orov-newui-depth.json │ │ ├── orov-newui-power.json │ │ ├── orov-newui-switches.json │ │ ├── orov-newui-throttle.json │ │ ├── orov-newui-time.json │ │ ├── orov-ping-graph.json │ │ ├── orov-plugin-finder.json │ │ ├── orov-plugin-manager.json │ │ ├── orov-serial-monitor.json │ │ ├── orov-servo-tilt.json │ │ ├── orov-settings-manager.json │ │ ├── orov-software-version.json │ │ ├── orov-telemetry-item.json │ │ ├── orov-telemetry-monitor.json │ │ ├── orov-thrusters2x1-motortest.json │ │ ├── orov-thrustfactor.json │ │ ├── orov-time.json │ │ ├── orov-topdowncompass.json │ │ ├── orov-twitch-stream-status.json │ │ ├── orov-video.json │ │ ├── settings-menu.json │ │ └── translation.json │ └── video │ │ ├── .gitignore │ │ ├── index.js │ │ ├── npm-shrinkwrap.json │ │ ├── package.json │ │ ├── public │ │ ├── bower.json │ │ ├── js │ │ │ ├── video-widgets-autodiscovery.js │ │ │ └── video.js │ │ └── webcomponents │ │ │ └── orov-video.html │ │ ├── shrinkwrap.yaml │ │ └── yarn.lock ├── static │ ├── .gitignore │ ├── README.md │ ├── bower.json │ ├── css.old │ │ ├── bootstrap-responsive.css │ │ └── bootstrap-responsive.min.css │ ├── favicon.ico │ ├── js │ │ ├── P2PStoreAndForward.js │ │ ├── analytics.js │ │ ├── app.js │ │ ├── autotrack.js │ │ ├── cockpit.js │ │ ├── eventEmitterStoreAndForward.js │ │ ├── libs │ │ │ ├── eventemitter2.js │ │ │ ├── gamepad.js │ │ │ └── readme.md │ │ ├── missioncontrol.js │ │ ├── no-scroll-fullscreen-viewport.js │ │ ├── replay.js │ │ ├── simpledb.js │ │ ├── socketIOStoreAndForward.js │ │ ├── socketIOtoEmitterBridge.js │ │ └── utilities.js │ ├── loading_screen_quotes.json │ ├── npm-shrinkwrap.json │ ├── presets │ │ └── OROVClassic.json │ ├── themes │ │ └── OpenROV │ │ │ ├── css │ │ │ └── style.css │ │ │ └── img │ │ │ └── openrov.png │ └── webcomponents │ │ ├── diagnostics │ │ └── diagnostics.html │ │ ├── drop-in-dialog │ │ └── drop-in-dialog.html │ │ ├── json-schema-editor │ │ └── json-schema-editor.html │ │ ├── menu │ │ └── menu.html │ │ ├── openrov-proxy │ │ └── openrov-proxy.html │ │ ├── orov-behaviors │ │ ├── bower.json │ │ ├── orov-behavior.html │ │ ├── orov-emitter-behavior.html │ │ ├── orov-globalization-behavior.html │ │ ├── test │ │ │ └── orov-emitter-behavior.html │ │ ├── testelement.html │ │ └── utilities.js │ │ └── terms-of-use │ │ └── terms-of-use.html ├── system-plugins │ ├── Readme.md │ ├── cloud-profile │ │ ├── index.js │ │ └── public │ │ │ ├── bower.json │ │ │ ├── js │ │ │ └── cloud-profile.js │ │ │ └── webcomponents │ │ │ ├── orov-login-behavior.html │ │ │ └── orov-login.html │ ├── globalization │ │ ├── index.js │ │ └── public │ │ │ └── js │ │ │ ├── globlization.js │ │ │ └── initGlobalization.js │ ├── input-controller │ │ ├── Readme.md │ │ ├── index.js │ │ └── public │ │ │ ├── bower.json │ │ │ ├── js │ │ │ ├── input-controller-widgets-autodiscovery.js │ │ │ ├── input-controller.js │ │ │ └── preset.js │ │ │ └── webcomponents │ │ │ └── orov-inputs-list.html │ ├── platform-manager │ │ ├── Install.js │ │ ├── README.md │ │ ├── Uninstall.js │ │ ├── index.js │ │ ├── install │ │ │ ├── files │ │ │ │ ├── custom_50x.html │ │ │ │ └── nginx.location │ │ │ └── manifest.json │ │ ├── modules │ │ │ ├── BoardInterface.js │ │ │ ├── CPUInterface.js │ │ │ ├── Interface.js │ │ │ ├── SerialBridge.js │ │ │ └── TridentSerialBridge.js │ │ ├── platforms │ │ │ ├── beaglebone │ │ │ │ ├── board.js │ │ │ │ ├── boards │ │ │ │ │ └── 2x │ │ │ │ │ │ ├── bridge.js │ │ │ │ │ │ ├── cpuPinmap.json │ │ │ │ │ │ ├── install │ │ │ │ │ │ ├── files │ │ │ │ │ │ │ ├── BuildFirmware.js │ │ │ │ │ │ │ ├── FlashESCs.js │ │ │ │ │ │ │ ├── FlashFirmware.js │ │ │ │ │ │ │ ├── dt-overlays │ │ │ │ │ │ │ │ └── OROV-CB25-00A0.dts │ │ │ │ │ │ │ ├── esc.conf │ │ │ │ │ │ │ └── flashBootloader.sh │ │ │ │ │ │ ├── manifest.json │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ ├── compile-dt-overlays.sh │ │ │ │ │ │ │ ├── install-orov-cb25-overlay.sh │ │ │ │ │ │ │ └── uninstall-orov-cb25-overlay.sh │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── BuildMCUFirmware.js │ │ │ │ │ │ ├── FlashESCFirmware.js │ │ │ │ │ │ ├── FlashESCS.sh │ │ │ │ │ │ ├── FlashMCUFirmware.js │ │ │ │ │ │ ├── ResetMCU.js │ │ │ │ │ │ └── ResetMCU.sh │ │ │ │ │ │ ├── setup.js │ │ │ │ │ │ └── statemachine.js │ │ │ │ ├── cpu.js │ │ │ │ ├── cpu │ │ │ │ │ ├── revisionInfo.json │ │ │ │ │ └── setup.js │ │ │ │ └── install │ │ │ │ │ ├── files │ │ │ │ │ ├── 2xBoardInfo.json │ │ │ │ │ ├── addswapfile.sh │ │ │ │ │ └── rc.local │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── scripts │ │ │ │ │ ├── post-install.sh │ │ │ │ │ └── pre-install.sh │ │ │ ├── mock │ │ │ │ ├── board.js │ │ │ │ ├── boards │ │ │ │ │ └── mock3000 │ │ │ │ │ │ ├── bridge.js │ │ │ │ │ │ ├── cpuPinmap.json │ │ │ │ │ │ ├── eeprom.json │ │ │ │ │ │ ├── install │ │ │ │ │ │ ├── files │ │ │ │ │ │ │ └── dt-overlays │ │ │ │ │ │ │ │ └── TestDT.dts │ │ │ │ │ │ ├── manifest.json │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── compile-dt-overlays.sh │ │ │ │ │ │ ├── setup.js │ │ │ │ │ │ └── statemachine.js │ │ │ │ ├── cpu.js │ │ │ │ ├── cpu │ │ │ │ │ ├── revisionInfo.json │ │ │ │ │ └── setup.js │ │ │ │ └── install │ │ │ │ │ ├── files │ │ │ │ │ └── test.txt │ │ │ │ │ ├── manifest.json │ │ │ │ │ └── scripts │ │ │ │ │ ├── post-install.sh │ │ │ │ │ ├── post-uninstall.sh │ │ │ │ │ ├── pre-install.sh │ │ │ │ │ └── pre-uninstall.sh │ │ │ └── raspberrypi │ │ │ │ ├── board.js │ │ │ │ ├── boards │ │ │ │ ├── rev10 │ │ │ │ │ ├── cpuPinmap.json │ │ │ │ │ ├── eeprom.json │ │ │ │ │ ├── install │ │ │ │ │ │ ├── files │ │ │ │ │ │ │ ├── buildSAMD.sh │ │ │ │ │ │ │ ├── debugSAMD.sh │ │ │ │ │ │ │ ├── flashEEPROM.js │ │ │ │ │ │ │ ├── flashESCS.sh │ │ │ │ │ │ │ ├── flashSAMD.sh │ │ │ │ │ │ │ ├── openocd_samd.cfg │ │ │ │ │ │ │ ├── resetSAMD.sh │ │ │ │ │ │ │ ├── selectESCA.sh │ │ │ │ │ │ │ ├── selectESCB.sh │ │ │ │ │ │ │ ├── selectESCC.sh │ │ │ │ │ │ │ └── selectSAMD.sh │ │ │ │ │ │ └── manifest.json │ │ │ │ │ ├── lib │ │ │ │ │ │ └── ResetMCU.js │ │ │ │ │ ├── setup.js │ │ │ │ │ └── statemachine.js │ │ │ │ ├── rev8 │ │ │ │ │ ├── cpuPinmap.json │ │ │ │ │ ├── eeprom.json │ │ │ │ │ ├── install │ │ │ │ │ │ ├── files │ │ │ │ │ │ │ ├── buildSAMD.sh │ │ │ │ │ │ │ ├── debugSAMD.sh │ │ │ │ │ │ │ ├── flashEEPROM.js │ │ │ │ │ │ │ ├── flashSAMD.sh │ │ │ │ │ │ │ ├── openocd_samd.cfg │ │ │ │ │ │ │ └── resetSAMD.sh │ │ │ │ │ │ └── manifest.json │ │ │ │ │ ├── lib │ │ │ │ │ │ └── ResetMCU.js │ │ │ │ │ ├── setup.js │ │ │ │ │ └── statemachine.js │ │ │ │ └── rev9 │ │ │ │ │ ├── cpuPinmap.json │ │ │ │ │ ├── eeprom.json │ │ │ │ │ ├── install │ │ │ │ │ ├── files │ │ │ │ │ │ ├── buildSAMD.sh │ │ │ │ │ │ ├── debugSAMD.sh │ │ │ │ │ │ ├── flashEEPROM.js │ │ │ │ │ │ ├── flashSAMD.sh │ │ │ │ │ │ ├── openocd_samd.cfg │ │ │ │ │ │ └── resetSAMD.sh │ │ │ │ │ └── manifest.json │ │ │ │ │ ├── lib │ │ │ │ │ └── ResetMCU.js │ │ │ │ │ ├── setup.js │ │ │ │ │ └── statemachine.js │ │ │ │ ├── cpu.js │ │ │ │ ├── cpu │ │ │ │ ├── EEPROMFlasher.js │ │ │ │ ├── OtherBoards.json │ │ │ │ ├── revisionInfo.json │ │ │ │ └── setup.js │ │ │ │ └── install │ │ │ │ ├── files │ │ │ │ ├── dt-overlays │ │ │ │ │ └── openrov-eeprom.dts │ │ │ │ └── rc.local │ │ │ │ ├── manifest.json │ │ │ │ └── scripts │ │ │ │ ├── compile-dt-overlays.sh │ │ │ │ ├── post-install.sh │ │ │ │ └── pre-install.sh │ │ └── public │ │ │ └── platform-manager.js │ ├── plugin-finder │ │ ├── Readme.md │ │ ├── index.js │ │ ├── plugins.ejs │ │ ├── plugins.ejs.icon │ │ └── public │ │ │ ├── css │ │ │ └── style.css │ │ │ ├── js │ │ │ ├── config.js │ │ │ ├── plugin-finder-widgets-autodiscovery.js │ │ │ └── plugin-finder.js │ │ │ └── webcomponents │ │ │ └── orov-plugin-finder.html │ ├── plugin-manager │ │ ├── Readme.md │ │ ├── addons.ejs │ │ ├── addons.ejs.icon │ │ ├── index.js │ │ └── public │ │ │ ├── js │ │ │ ├── plugin-manager-widgets-autodiscovery.js │ │ │ └── plugin-manager.js │ │ │ └── webcomponents │ │ │ └── orov-plugin-manager.html │ ├── rov-beacon │ │ ├── beacon.js │ │ └── index.js │ ├── settings-manager │ │ ├── README.md │ │ ├── index.js │ │ ├── npm-shrinkwrap.json │ │ ├── package.json │ │ ├── public │ │ │ ├── bower.json │ │ │ ├── js │ │ │ │ └── settings-manager.js │ │ │ └── webcomponents │ │ │ │ ├── foundationcss.html │ │ │ │ ├── normalizecss.html │ │ │ │ └── orov-settings-manager.html │ │ ├── settings.ejs │ │ ├── settings.ejs.icon │ │ ├── shrinkwrap.yaml │ │ └── yarn.lock │ ├── software-update-alert │ │ ├── Readme.md │ │ ├── _updates.ejs │ │ ├── index.js │ │ ├── public │ │ │ ├── bower.json │ │ │ ├── js │ │ │ │ └── software-update.js │ │ │ └── webcomponents │ │ │ │ ├── orov-software-update-progress-tester.html │ │ │ │ ├── orov-software-update-progress.html │ │ │ │ ├── orov-software-update-router.html │ │ │ │ └── orov-software-version.html │ │ └── tests │ │ │ └── index.spec.js │ └── ui-manager │ │ ├── README.md │ │ ├── all_imports.ejs │ │ ├── all_scripts.ejs │ │ ├── base.ejs │ │ ├── index.js │ │ ├── popup.ejs │ │ └── public │ │ ├── bower.json │ │ ├── js │ │ ├── cache-ignoreParameters-handler.js │ │ ├── nocache-fetch-handler.js │ │ ├── precache.txt │ │ └── ui-manager.js │ │ └── webcomponents │ │ ├── README.md │ │ ├── all-imports.html │ │ ├── index.html │ │ ├── orov-appletswitcher-behavior.html │ │ ├── orov-appletswitcher.html │ │ ├── orov-panel-behavior.html │ │ ├── orov-panel.html │ │ ├── orov-widget-registry.html │ │ ├── switch-behavior.html │ │ └── test │ │ ├── index.html │ │ └── orov-widget-registry.html └── tests │ └── cockpit.js ├── webcomponent_docs ├── README.md ├── all-imports.html ├── bower.json └── index.html └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/.gitignore -------------------------------------------------------------------------------- /.jsbeautifyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/.jsbeautifyrc -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/.jshintignore -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/README.md -------------------------------------------------------------------------------- /docs/ARCHITECTURE-PLUGINS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/docs/ARCHITECTURE-PLUGINS.md -------------------------------------------------------------------------------- /docs/CREATING-PLUGINS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/docs/CREATING-PLUGINS.md -------------------------------------------------------------------------------- /docs/DEV-HOWTO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/docs/DEV-HOWTO.md -------------------------------------------------------------------------------- /docs/MESSAGING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/docs/MESSAGING.md -------------------------------------------------------------------------------- /docs/UI-ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/docs/UI-ARCHITECTURE.md -------------------------------------------------------------------------------- /docs/WORKING-WITH-HARDWARE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/docs/WORKING-WITH-HARDWARE.md -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/gruntfile.js -------------------------------------------------------------------------------- /install_lib/bower_install_all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/install_lib/bower_install_all.js -------------------------------------------------------------------------------- /install_lib/bower_upgrade_all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/install_lib/bower_upgrade_all.js -------------------------------------------------------------------------------- /install_lib/npm_install_all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/install_lib/npm_install_all.js -------------------------------------------------------------------------------- /install_lib/npm_shrinkwrap_all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/install_lib/npm_shrinkwrap_all.js -------------------------------------------------------------------------------- /install_lib/npm_shrinkwrap_removeOptionalDeps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/install_lib/npm_shrinkwrap_removeOptionalDeps.js -------------------------------------------------------------------------------- /install_lib/npm_upgrade_all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/install_lib/npm_upgrade_all.js -------------------------------------------------------------------------------- /install_lib/openrov-cockpit-afterinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/install_lib/openrov-cockpit-afterinstall.sh -------------------------------------------------------------------------------- /install_lib/openrov-cockpit-beforeinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/install_lib/openrov-cockpit-beforeinstall.sh -------------------------------------------------------------------------------- /install_lib/openrov-cockpit-beforeremove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/install_lib/openrov-cockpit-beforeremove.sh -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/jsconfig.json -------------------------------------------------------------------------------- /npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/npm-shrinkwrap.json -------------------------------------------------------------------------------- /package-deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/package-deb.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/package.json -------------------------------------------------------------------------------- /publish-deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/publish-deb.sh -------------------------------------------------------------------------------- /shrinkwrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/shrinkwrap.yaml -------------------------------------------------------------------------------- /src/.foreverignore: -------------------------------------------------------------------------------- 1 | *.json 2 | -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/README.md -------------------------------------------------------------------------------- /src/beta-plugins/basictheme/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/basictheme/header.ejs -------------------------------------------------------------------------------- /src/beta-plugins/basictheme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/basictheme/index.js -------------------------------------------------------------------------------- /src/beta-plugins/basictheme/public/css/basictheme.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /src/beta-plugins/capestatus/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/capestatus/index.js -------------------------------------------------------------------------------- /src/beta-plugins/capestatus/public/css/style.css: -------------------------------------------------------------------------------- 1 | /* 2 | //css for the plugin 3 | */ 4 | 5 | -------------------------------------------------------------------------------- /src/beta-plugins/capestatus/public/js/capestatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/capestatus/public/js/capestatus.js -------------------------------------------------------------------------------- /src/beta-plugins/classic-ui/cockpit.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/classic-ui/cockpit.ejs -------------------------------------------------------------------------------- /src/beta-plugins/classic-ui/cockpit.ejs.icon: -------------------------------------------------------------------------------- 1 | device:airplanemode-active 2 | -------------------------------------------------------------------------------- /src/beta-plugins/classic-ui/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/classic-ui/header.ejs -------------------------------------------------------------------------------- /src/beta-plugins/classic-ui/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/classic-ui/index.js -------------------------------------------------------------------------------- /src/beta-plugins/classic-ui/public/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/classic-ui/public/bower.json -------------------------------------------------------------------------------- /src/beta-plugins/classic-ui/public/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/classic-ui/public/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /src/beta-plugins/classic-ui/public/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/classic-ui/public/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /src/beta-plugins/classic-ui/public/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/classic-ui/public/css/bootstrap.css -------------------------------------------------------------------------------- /src/beta-plugins/classic-ui/public/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/classic-ui/public/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/beta-plugins/classic-ui/public/js/classic-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/classic-ui/public/js/classic-ui.js -------------------------------------------------------------------------------- /src/beta-plugins/classic-ui/public/webcomponents/capestatus-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/classic-ui/public/webcomponents/capestatus-footer.html -------------------------------------------------------------------------------- /src/beta-plugins/classic-ui/public/webcomponents/classic-ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/classic-ui/public/webcomponents/classic-ui.html -------------------------------------------------------------------------------- /src/beta-plugins/classic-ui/public/webcomponents/gamepad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/classic-ui/public/webcomponents/gamepad.html -------------------------------------------------------------------------------- /src/beta-plugins/classic-ui/public/webcomponents/holds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/classic-ui/public/webcomponents/holds.html -------------------------------------------------------------------------------- /src/beta-plugins/classic-ui/public/webcomponents/img/gamepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/classic-ui/public/webcomponents/img/gamepad.png -------------------------------------------------------------------------------- /src/beta-plugins/classic-ui/public/webcomponents/img/keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/classic-ui/public/webcomponents/img/keyboard.png -------------------------------------------------------------------------------- /src/beta-plugins/classic-ui/public/webcomponents/img/laser_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/classic-ui/public/webcomponents/img/laser_off.png -------------------------------------------------------------------------------- /src/beta-plugins/classic-ui/public/webcomponents/img/laser_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/classic-ui/public/webcomponents/img/laser_on.png -------------------------------------------------------------------------------- /src/beta-plugins/classic-ui/public/webcomponents/img/openrov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/classic-ui/public/webcomponents/img/openrov.png -------------------------------------------------------------------------------- /src/beta-plugins/engineering-panel/eng.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/engineering-panel/eng.ejs -------------------------------------------------------------------------------- /src/beta-plugins/engineering-panel/eng.ejs.icon: -------------------------------------------------------------------------------- 1 | icons:dashboard 2 | -------------------------------------------------------------------------------- /src/beta-plugins/engineering-panel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/engineering-panel/index.js -------------------------------------------------------------------------------- /src/beta-plugins/engineering-panel/public/js/engineeringpanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/engineering-panel/public/js/engineeringpanel.js -------------------------------------------------------------------------------- /src/beta-plugins/engineering-panel/public/webcomponents/js/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/engineering-panel/public/webcomponents/js/d3.min.js -------------------------------------------------------------------------------- /src/beta-plugins/engineering-panel/public/webcomponents/orov-engineering-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/engineering-panel/public/webcomponents/orov-engineering-button.html -------------------------------------------------------------------------------- /src/beta-plugins/engineering-panel/public/webcomponents/orov-engineering-chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/engineering-panel/public/webcomponents/orov-engineering-chart.html -------------------------------------------------------------------------------- /src/beta-plugins/engineering-panel/public/webcomponents/orov-engineering-widget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/engineering-panel/public/webcomponents/orov-engineering-widget.html -------------------------------------------------------------------------------- /src/beta-plugins/gps/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/gps/index.js -------------------------------------------------------------------------------- /src/beta-plugins/gps/map.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/gps/map.ejs -------------------------------------------------------------------------------- /src/beta-plugins/gps/map.ejs.icon: -------------------------------------------------------------------------------- 1 | maps:place 2 | -------------------------------------------------------------------------------- /src/beta-plugins/gps/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/gps/npm-shrinkwrap.json -------------------------------------------------------------------------------- /src/beta-plugins/gps/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/gps/package.json -------------------------------------------------------------------------------- /src/beta-plugins/gps/public/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/gps/public/bower.json -------------------------------------------------------------------------------- /src/beta-plugins/gps/public/js/GPS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/gps/public/js/GPS.js -------------------------------------------------------------------------------- /src/beta-plugins/gps/public/webcomponents/data/KML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/gps/public/webcomponents/data/KML.js -------------------------------------------------------------------------------- /src/beta-plugins/gps/public/webcomponents/data/KML_Samples.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/gps/public/webcomponents/data/KML_Samples.kml -------------------------------------------------------------------------------- /src/beta-plugins/gps/public/webcomponents/data/Layer0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/gps/public/webcomponents/data/Layer0.png -------------------------------------------------------------------------------- /src/beta-plugins/gps/public/webcomponents/data/doc.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/gps/public/webcomponents/data/doc.kml -------------------------------------------------------------------------------- /src/beta-plugins/gps/public/webcomponents/orov-map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/gps/public/webcomponents/orov-map.html -------------------------------------------------------------------------------- /src/beta-plugins/gps/shrinkwrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/gps/shrinkwrap.yaml -------------------------------------------------------------------------------- /src/beta-plugins/gps/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/gps/yarn.lock -------------------------------------------------------------------------------- /src/beta-plugins/headsup-menu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/headsup-menu/index.js -------------------------------------------------------------------------------- /src/beta-plugins/headsup-menu/public/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/headsup-menu/public/bower.json -------------------------------------------------------------------------------- /src/beta-plugins/headsup-menu/public/js/headsup-menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/headsup-menu/public/js/headsup-menu.js -------------------------------------------------------------------------------- /src/beta-plugins/headsup-menu/public/webcomponents/orov-headsup-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/headsup-menu/public/webcomponents/orov-headsup-menu.html -------------------------------------------------------------------------------- /src/beta-plugins/internet-control/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/internet-control/README.md -------------------------------------------------------------------------------- /src/beta-plugins/internet-control/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/internet-control/index.js -------------------------------------------------------------------------------- /src/beta-plugins/internet-control/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/internet-control/npm-shrinkwrap.json -------------------------------------------------------------------------------- /src/beta-plugins/internet-control/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/internet-control/package.json -------------------------------------------------------------------------------- /src/beta-plugins/internet-control/public/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/internet-control/public/bower.json -------------------------------------------------------------------------------- /src/beta-plugins/internet-control/public/js/internet-control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/internet-control/public/js/internet-control.js -------------------------------------------------------------------------------- /src/beta-plugins/internet-control/public/webcomponents/orov-internetControl-pilotselector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/internet-control/public/webcomponents/orov-internetControl-pilotselector.html -------------------------------------------------------------------------------- /src/beta-plugins/internet-control/public/webcomponents/orov-internetControl-status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/internet-control/public/webcomponents/orov-internetControl-status.html -------------------------------------------------------------------------------- /src/beta-plugins/internet-control/shrinkwrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/internet-control/shrinkwrap.yaml -------------------------------------------------------------------------------- /src/beta-plugins/internet-control/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/internet-control/yarn.lock -------------------------------------------------------------------------------- /src/beta-plugins/videofilter-edge-threejs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/videofilter-edge-threejs/index.js -------------------------------------------------------------------------------- /src/beta-plugins/videofilter-edge-threejs/public/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/videofilter-edge-threejs/public/bower.json -------------------------------------------------------------------------------- /src/beta-plugins/videofilter-edge-threejs/public/js/videofilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/beta-plugins/videofilter-edge-threejs/public/js/videofilter.js -------------------------------------------------------------------------------- /src/cockpit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/cockpit.js -------------------------------------------------------------------------------- /src/dev-plugins/serial-monitor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/dev-plugins/serial-monitor/index.js -------------------------------------------------------------------------------- /src/dev-plugins/serial-monitor/mcu-term.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/dev-plugins/serial-monitor/mcu-term.ejs -------------------------------------------------------------------------------- /src/dev-plugins/serial-monitor/mcu-term.ejs.icon: -------------------------------------------------------------------------------- 1 | device:developer-mode 2 | -------------------------------------------------------------------------------- /src/dev-plugins/serial-monitor/public/css/style.css: -------------------------------------------------------------------------------- 1 | //css for the plugin 2 | -------------------------------------------------------------------------------- /src/dev-plugins/serial-monitor/public/js/serial-monitor-widgets-autodiscovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/dev-plugins/serial-monitor/public/js/serial-monitor-widgets-autodiscovery.js -------------------------------------------------------------------------------- /src/dev-plugins/serial-monitor/public/js/serial-monitor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/dev-plugins/serial-monitor/public/js/serial-monitor.js -------------------------------------------------------------------------------- /src/dev-plugins/serial-monitor/public/webcomponents/orov-serial-monitor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/dev-plugins/serial-monitor/public/webcomponents/orov-serial-monitor.html -------------------------------------------------------------------------------- /src/dev-plugins/theme_r2/cockpit.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/dev-plugins/theme_r2/cockpit.ejs -------------------------------------------------------------------------------- /src/dev-plugins/theme_r2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/dev-plugins/theme_r2/index.js -------------------------------------------------------------------------------- /src/dev-plugins/theme_r2/public/css/theme_r2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/dev-plugins/theme_r2/public/css/theme_r2.css -------------------------------------------------------------------------------- /src/dev-plugins/theme_r2/public/js/lib/widget-layout-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/dev-plugins/theme_r2/public/js/lib/widget-layout-manager.js -------------------------------------------------------------------------------- /src/dev-plugins/theme_r2/public/js/theme_r2_index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/dev-plugins/theme_r2/public/js/theme_r2_index.js -------------------------------------------------------------------------------- /src/dev-plugins/widget-list/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/dev-plugins/widget-list/index.js -------------------------------------------------------------------------------- /src/dev-plugins/widget-list/public/webcomponents/orov-widget-list-panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/dev-plugins/widget-list/public/webcomponents/orov-widget-list-panel.html -------------------------------------------------------------------------------- /src/dev-plugins/widget-list/widgets.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/dev-plugins/widget-list/widgets.ejs -------------------------------------------------------------------------------- /src/lib/AppFramework.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/lib/AppFramework.js -------------------------------------------------------------------------------- /src/lib/ArduinoBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/lib/ArduinoBuilder.js -------------------------------------------------------------------------------- /src/lib/ArduinoHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/lib/ArduinoHelper.js -------------------------------------------------------------------------------- /src/lib/CockpitMessaging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/lib/CockpitMessaging.js -------------------------------------------------------------------------------- /src/lib/Installer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/lib/Installer.js -------------------------------------------------------------------------------- /src/lib/Listener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/lib/Listener.js -------------------------------------------------------------------------------- /src/lib/ObjectPool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/lib/ObjectPool.js -------------------------------------------------------------------------------- /src/lib/Periodic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/lib/Periodic.js -------------------------------------------------------------------------------- /src/lib/PluginLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/lib/PluginLoader.js -------------------------------------------------------------------------------- /src/lib/adjustments.json: -------------------------------------------------------------------------------- 1 | { 2 | "level": "error" 3 | } 4 | -------------------------------------------------------------------------------- /src/lib/array-includes-pollyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/lib/array-includes-pollyfill.js -------------------------------------------------------------------------------- /src/lib/cleanCacheFolders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/lib/cleanCacheFolders.js -------------------------------------------------------------------------------- /src/lib/cockpitversion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/lib/cockpitversion.js -------------------------------------------------------------------------------- /src/lib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/lib/config.js -------------------------------------------------------------------------------- /src/lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/lib/logger.js -------------------------------------------------------------------------------- /src/lib/orov.TranslationResourceManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/lib/orov.TranslationResourceManager.js -------------------------------------------------------------------------------- /src/lib/orutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/lib/orutils.js -------------------------------------------------------------------------------- /src/plugins/about/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/about/README.md -------------------------------------------------------------------------------- /src/plugins/about/about.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/about/about.ejs -------------------------------------------------------------------------------- /src/plugins/about/about.ejs.icon: -------------------------------------------------------------------------------- 1 | info -------------------------------------------------------------------------------- /src/plugins/about/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/about/index.js -------------------------------------------------------------------------------- /src/plugins/about/public/js/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/about/public/js/about.js -------------------------------------------------------------------------------- /src/plugins/blackbox/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/blackbox/index.js -------------------------------------------------------------------------------- /src/plugins/blackbox/public/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/blackbox/public/bower.json -------------------------------------------------------------------------------- /src/plugins/blackbox/public/js/blackbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/blackbox/public/js/blackbox.js -------------------------------------------------------------------------------- /src/plugins/blackbox/public/js/lib/idb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/blackbox/public/js/lib/idb.js -------------------------------------------------------------------------------- /src/plugins/blackbox/public/js/lib/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/blackbox/public/js/lib/sw.js -------------------------------------------------------------------------------- /src/plugins/blackbox/public/webcomponents/orov-blackbox-downloader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/blackbox/public/webcomponents/orov-blackbox-downloader.html -------------------------------------------------------------------------------- /src/plugins/blackbox/public/webcomponents/orov-blackbox-status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/blackbox/public/webcomponents/orov-blackbox-status.html -------------------------------------------------------------------------------- /src/plugins/blackbox/public/webcomponents/orov-blackbox-switch-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/blackbox/public/webcomponents/orov-blackbox-switch-behavior.html -------------------------------------------------------------------------------- /src/plugins/blackbox/public/webcomponents/orov-blackbox-switch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/blackbox/public/webcomponents/orov-blackbox-switch.html -------------------------------------------------------------------------------- /src/plugins/blackbox/public/webcomponents/orov-blackbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/blackbox/public/webcomponents/orov-blackbox.html -------------------------------------------------------------------------------- /src/plugins/camera-servo/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/camera-servo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/camera-servo/index.js -------------------------------------------------------------------------------- /src/plugins/camera-servo/public/js/camera-servo-widgets-autodiscovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/camera-servo/public/js/camera-servo-widgets-autodiscovery.js -------------------------------------------------------------------------------- /src/plugins/camera-servo/public/js/camera-servo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/camera-servo/public/js/camera-servo.js -------------------------------------------------------------------------------- /src/plugins/camera-servo/public/webcomponents/orov-servo-tilt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/camera-servo/public/webcomponents/orov-servo-tilt.html -------------------------------------------------------------------------------- /src/plugins/classic-control-mapping/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/classic-control-mapping/index.js -------------------------------------------------------------------------------- /src/plugins/connection-health/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/connection-health/index.js -------------------------------------------------------------------------------- /src/plugins/connection-health/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/connection-health/public/css/style.css -------------------------------------------------------------------------------- /src/plugins/connection-health/public/js/connection-health.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/connection-health/public/js/connection-health.js -------------------------------------------------------------------------------- /src/plugins/connection-health/public/webcomponents/orov-connection-health.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/connection-health/public/webcomponents/orov-connection-health.html -------------------------------------------------------------------------------- /src/plugins/connection-health/public/webcomponents/orov-ping-graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/connection-health/public/webcomponents/orov-ping-graph.html -------------------------------------------------------------------------------- /src/plugins/controllerboard2x/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/controllerboard2x/index.js -------------------------------------------------------------------------------- /src/plugins/controllerboard2x/public/js/systemEnvironment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/controllerboard2x/public/js/systemEnvironment.js -------------------------------------------------------------------------------- /src/plugins/controllerboard2x/public/js/systemPower.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/controllerboard2x/public/js/systemPower.js -------------------------------------------------------------------------------- /src/plugins/controllerboard2x/public/js/telemetryToSystemPower.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/controllerboard2x/public/js/telemetryToSystemPower.js -------------------------------------------------------------------------------- /src/plugins/controllerboard2x/public/webcomponents/orov-battery-status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/controllerboard2x/public/webcomponents/orov-battery-status.html -------------------------------------------------------------------------------- /src/plugins/controllerboard2x/public/webcomponents/orov-esc-switch-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/controllerboard2x/public/webcomponents/orov-esc-switch-behavior.html -------------------------------------------------------------------------------- /src/plugins/controllerboard2x/public/webcomponents/orov-esc-switch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/controllerboard2x/public/webcomponents/orov-esc-switch.html -------------------------------------------------------------------------------- /src/plugins/controllerboard2x/public/webcomponents/orov-power-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/controllerboard2x/public/webcomponents/orov-power-behavior.html -------------------------------------------------------------------------------- /src/plugins/controllerboard2x/public/webcomponents/orov-time-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/controllerboard2x/public/webcomponents/orov-time-behavior.html -------------------------------------------------------------------------------- /src/plugins/controllerboard2x/public/webcomponents/orov-time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/controllerboard2x/public/webcomponents/orov-time.html -------------------------------------------------------------------------------- /src/plugins/data-viewer/data.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/data-viewer/data.ejs -------------------------------------------------------------------------------- /src/plugins/data-viewer/data.ejs.icon: -------------------------------------------------------------------------------- 1 | av:video-library 2 | -------------------------------------------------------------------------------- /src/plugins/data-viewer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/data-viewer/index.js -------------------------------------------------------------------------------- /src/plugins/data-viewer/public/js/dataviewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/data-viewer/public/js/dataviewer.js -------------------------------------------------------------------------------- /src/plugins/diveprofile/diveprofile.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/diveprofile/diveprofile.ejs -------------------------------------------------------------------------------- /src/plugins/diveprofile/diveprofile.ejs.icon: -------------------------------------------------------------------------------- 1 | icons:assignment 2 | -------------------------------------------------------------------------------- /src/plugins/diveprofile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/diveprofile/index.js -------------------------------------------------------------------------------- /src/plugins/diveprofile/public/js/diveprofile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/diveprofile/public/js/diveprofile.js -------------------------------------------------------------------------------- /src/plugins/example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/example/index.js -------------------------------------------------------------------------------- /src/plugins/example/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/example/public/css/style.css -------------------------------------------------------------------------------- /src/plugins/example/public/js/example-widgets-autodiscovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/example/public/js/example-widgets-autodiscovery.js -------------------------------------------------------------------------------- /src/plugins/example/public/js/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/example/public/js/example.js -------------------------------------------------------------------------------- /src/plugins/example/public/tests/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/example/public/tests/test.html -------------------------------------------------------------------------------- /src/plugins/example/public/webcomponents/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/example/public/webcomponents/example.html -------------------------------------------------------------------------------- /src/plugins/example/tests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/example/tests/index.js -------------------------------------------------------------------------------- /src/plugins/externallights/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/externallights/index.js -------------------------------------------------------------------------------- /src/plugins/externallights/public/js/externallights-widgets-autodiscovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/externallights/public/js/externallights-widgets-autodiscovery.js -------------------------------------------------------------------------------- /src/plugins/externallights/public/js/externallights.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/externallights/public/js/externallights.js -------------------------------------------------------------------------------- /src/plugins/externallights/public/webcomponents/img/brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/externallights/public/webcomponents/img/brightness.png -------------------------------------------------------------------------------- /src/plugins/externallights/public/webcomponents/orov-elight-switch-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/externallights/public/webcomponents/orov-elight-switch-behavior.html -------------------------------------------------------------------------------- /src/plugins/externallights/public/webcomponents/orov-elight-switch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/externallights/public/webcomponents/orov-elight-switch.html -------------------------------------------------------------------------------- /src/plugins/externallights/public/webcomponents/orov-external-brightness-indicator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/externallights/public/webcomponents/orov-external-brightness-indicator.html -------------------------------------------------------------------------------- /src/plugins/geomuxp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/geomuxp/README.md -------------------------------------------------------------------------------- /src/plugins/geomuxp/geomux.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/geomuxp/geomux.ejs -------------------------------------------------------------------------------- /src/plugins/geomuxp/geomux.ejs.icon: -------------------------------------------------------------------------------- 1 | image:camera-alt -------------------------------------------------------------------------------- /src/plugins/geomuxp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/geomuxp/index.js -------------------------------------------------------------------------------- /src/plugins/geomuxp/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/geomuxp/npm-shrinkwrap.json -------------------------------------------------------------------------------- /src/plugins/geomuxp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/geomuxp/package.json -------------------------------------------------------------------------------- /src/plugins/geomuxp/public/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/geomuxp/public/bower.json -------------------------------------------------------------------------------- /src/plugins/geomuxp/public/js/geomuxp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/geomuxp/public/js/geomuxp.js -------------------------------------------------------------------------------- /src/plugins/geomuxp/public/webcomponents/orov-geomux.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/geomuxp/public/webcomponents/orov-geomux.html -------------------------------------------------------------------------------- /src/plugins/geomuxp/shrinkwrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/geomuxp/shrinkwrap.yaml -------------------------------------------------------------------------------- /src/plugins/geomuxp/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/geomuxp/yarn.lock -------------------------------------------------------------------------------- /src/plugins/host-diagnostics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/host-diagnostics/README.md -------------------------------------------------------------------------------- /src/plugins/host-diagnostics/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/host-diagnostics/index.js -------------------------------------------------------------------------------- /src/plugins/host-diagnostics/public/js/host-diagnostics-widgets-autodiscovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/host-diagnostics/public/js/host-diagnostics-widgets-autodiscovery.js -------------------------------------------------------------------------------- /src/plugins/host-diagnostics/public/js/host-diagnostics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/host-diagnostics/public/js/host-diagnostics.js -------------------------------------------------------------------------------- /src/plugins/host-diagnostics/public/js/logcapture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/host-diagnostics/public/js/logcapture.js -------------------------------------------------------------------------------- /src/plugins/host-diagnostics/public/webcomponents/events-graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/host-diagnostics/public/webcomponents/events-graph.html -------------------------------------------------------------------------------- /src/plugins/host-diagnostics/public/webcomponents/javascript-loopspeed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/host-diagnostics/public/webcomponents/javascript-loopspeed.html -------------------------------------------------------------------------------- /src/plugins/imu/imu.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/imu/imu.ejs -------------------------------------------------------------------------------- /src/plugins/imu/imu.ejs.icon: -------------------------------------------------------------------------------- 1 | device:gps-fixed 2 | -------------------------------------------------------------------------------- /src/plugins/imu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/imu/index.js -------------------------------------------------------------------------------- /src/plugins/imu/public/js/imu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/imu/public/js/imu.js -------------------------------------------------------------------------------- /src/plugins/input-configurator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/input-configurator/README.md -------------------------------------------------------------------------------- /src/plugins/input-configurator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/input-configurator/index.js -------------------------------------------------------------------------------- /src/plugins/input-configurator/input.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/input-configurator/input.ejs -------------------------------------------------------------------------------- /src/plugins/input-configurator/input.ejs.icon: -------------------------------------------------------------------------------- 1 | hardware:videogame-asset -------------------------------------------------------------------------------- /src/plugins/input-configurator/public/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/input-configurator/public/bower.json -------------------------------------------------------------------------------- /src/plugins/input-configurator/public/configurator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/input-configurator/public/configurator.html -------------------------------------------------------------------------------- /src/plugins/input-configurator/public/configuratorDialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/input-configurator/public/configuratorDialog.html -------------------------------------------------------------------------------- /src/plugins/input-configurator/public/js/input-configurator-widgets-autodiscovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/input-configurator/public/js/input-configurator-widgets-autodiscovery.js -------------------------------------------------------------------------------- /src/plugins/input-configurator/public/js/input-configurator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/input-configurator/public/js/input-configurator.js -------------------------------------------------------------------------------- /src/plugins/input-configurator/public/webcomponents/MouseTrapExtension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/input-configurator/public/webcomponents/MouseTrapExtension.js -------------------------------------------------------------------------------- /src/plugins/input-configurator/public/webcomponents/orov-input-configurator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/input-configurator/public/webcomponents/orov-input-configurator.html -------------------------------------------------------------------------------- /src/plugins/internet-stream/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/internet-stream/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/internet-stream/index.js -------------------------------------------------------------------------------- /src/plugins/internet-stream/public/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/internet-stream/public/bower.json -------------------------------------------------------------------------------- /src/plugins/internet-stream/public/js/internet-stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/internet-stream/public/js/internet-stream.js -------------------------------------------------------------------------------- /src/plugins/internet-stream/public/webcomponents/orov-streaming-switch-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/internet-stream/public/webcomponents/orov-streaming-switch-behavior.html -------------------------------------------------------------------------------- /src/plugins/internet-stream/public/webcomponents/orov-streaming-switch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/internet-stream/public/webcomponents/orov-streaming-switch.html -------------------------------------------------------------------------------- /src/plugins/internet-stream/public/webcomponents/orov-twitch-stream-status-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/internet-stream/public/webcomponents/orov-twitch-stream-status-behavior.html -------------------------------------------------------------------------------- /src/plugins/internet-stream/public/webcomponents/orov-twitch-stream-status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/internet-stream/public/webcomponents/orov-twitch-stream-status.html -------------------------------------------------------------------------------- /src/plugins/lasers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/lasers/index.js -------------------------------------------------------------------------------- /src/plugins/lasers/public/js/laser-widgets-autodiscovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/lasers/public/js/laser-widgets-autodiscovery.js -------------------------------------------------------------------------------- /src/plugins/lasers/public/js/laser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/lasers/public/js/laser.js -------------------------------------------------------------------------------- /src/plugins/lasers/public/webcomponents/orov-laser-switch-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/lasers/public/webcomponents/orov-laser-switch-behavior.html -------------------------------------------------------------------------------- /src/plugins/lasers/public/webcomponents/orov-laser-switch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/lasers/public/webcomponents/orov-laser-switch.html -------------------------------------------------------------------------------- /src/plugins/lasers/public/webcomponents/orov-lasers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/lasers/public/webcomponents/orov-lasers.html -------------------------------------------------------------------------------- /src/plugins/lights/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/lights/index.js -------------------------------------------------------------------------------- /src/plugins/lights/public/js/lights-widgets-autodiscovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/lights/public/js/lights-widgets-autodiscovery.js -------------------------------------------------------------------------------- /src/plugins/lights/public/js/lights.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/lights/public/js/lights.js -------------------------------------------------------------------------------- /src/plugins/lights/public/webcomponents/brightness-indicator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/lights/public/webcomponents/brightness-indicator.html -------------------------------------------------------------------------------- /src/plugins/lights/public/webcomponents/orov-light-switch-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/lights/public/webcomponents/orov-light-switch-behavior.html -------------------------------------------------------------------------------- /src/plugins/lights/public/webcomponents/orov-light-switch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/lights/public/webcomponents/orov-light-switch.html -------------------------------------------------------------------------------- /src/plugins/local-media-hardware/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/local-media-hardware/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/local-media-hardware/index.js -------------------------------------------------------------------------------- /src/plugins/local-media-hardware/public/js/local-media-hardware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/local-media-hardware/public/js/local-media-hardware.js -------------------------------------------------------------------------------- /src/plugins/mjpeg-video/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mjpeg-video/index.js -------------------------------------------------------------------------------- /src/plugins/mjpeg-video/mjpeg.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mjpeg-video/mjpeg.ejs -------------------------------------------------------------------------------- /src/plugins/mjpeg-video/mjpeg.ejs.icon: -------------------------------------------------------------------------------- 1 | image:camera-alt -------------------------------------------------------------------------------- /src/plugins/mjpeg-video/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mjpeg-video/npm-shrinkwrap.json -------------------------------------------------------------------------------- /src/plugins/mjpeg-video/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mjpeg-video/package.json -------------------------------------------------------------------------------- /src/plugins/mjpeg-video/public/js/mjpeg-video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mjpeg-video/public/js/mjpeg-video.js -------------------------------------------------------------------------------- /src/plugins/mjpeg-video/public/webcomponents/mjpeg-packet-video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mjpeg-video/public/webcomponents/mjpeg-packet-video.html -------------------------------------------------------------------------------- /src/plugins/mjpeg-video/public/webcomponents/orov-mjpeg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mjpeg-video/public/webcomponents/orov-mjpeg.html -------------------------------------------------------------------------------- /src/plugins/mjpeg-video/shrinkwrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mjpeg-video/shrinkwrap.yaml -------------------------------------------------------------------------------- /src/plugins/mjpeg-video/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mjpeg-video/yarn.lock -------------------------------------------------------------------------------- /src/plugins/mobile-ui/cockpit.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/cockpit.ejs -------------------------------------------------------------------------------- /src/plugins/mobile-ui/cockpit.ejs.icon: -------------------------------------------------------------------------------- 1 | device:airplanemode-active 2 | -------------------------------------------------------------------------------- /src/plugins/mobile-ui/head.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/head.ejs -------------------------------------------------------------------------------- /src/plugins/mobile-ui/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/header.ejs -------------------------------------------------------------------------------- /src/plugins/mobile-ui/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/index.js -------------------------------------------------------------------------------- /src/plugins/mobile-ui/network.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/network.ejs -------------------------------------------------------------------------------- /src/plugins/mobile-ui/network.ejs.icon: -------------------------------------------------------------------------------- 1 | notification:wifi 2 | -------------------------------------------------------------------------------- /src/plugins/mobile-ui/public/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/public/bower.json -------------------------------------------------------------------------------- /src/plugins/mobile-ui/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/public/css/style.css -------------------------------------------------------------------------------- /src/plugins/mobile-ui/public/js/lib/0_jquery.svg.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/public/js/lib/0_jquery.svg.min.js -------------------------------------------------------------------------------- /src/plugins/mobile-ui/public/js/lib/1_jquery.svgdom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/public/js/lib/1_jquery.svgdom.min.js -------------------------------------------------------------------------------- /src/plugins/mobile-ui/public/js/lib/2_jquery.svganim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/public/js/lib/2_jquery.svganim.min.js -------------------------------------------------------------------------------- /src/plugins/mobile-ui/public/js/lib/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/public/js/lib/three.min.js -------------------------------------------------------------------------------- /src/plugins/mobile-ui/public/js/mobile-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/public/js/mobile-ui.js -------------------------------------------------------------------------------- /src/plugins/mobile-ui/public/js/third-party/0_jquery.svg.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/public/js/third-party/0_jquery.svg.min.js -------------------------------------------------------------------------------- /src/plugins/mobile-ui/public/js/third-party/1_jquery.svgdom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/public/js/third-party/1_jquery.svgdom.min.js -------------------------------------------------------------------------------- /src/plugins/mobile-ui/public/js/third-party/2_jquery.svganim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/public/js/third-party/2_jquery.svganim.min.js -------------------------------------------------------------------------------- /src/plugins/mobile-ui/public/js/third-party/threejs/DeviceOrientationControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/public/js/third-party/threejs/DeviceOrientationControls.js -------------------------------------------------------------------------------- /src/plugins/mobile-ui/public/js/third-party/threejs/OrbitControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/public/js/third-party/threejs/OrbitControls.js -------------------------------------------------------------------------------- /src/plugins/mobile-ui/public/js/third-party/threejs/StereoEffect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/public/js/third-party/threejs/StereoEffect.js -------------------------------------------------------------------------------- /src/plugins/mobile-ui/public/js/third-party/threejs/three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/public/js/third-party/threejs/three.js -------------------------------------------------------------------------------- /src/plugins/mobile-ui/public/textures/patterns/checker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/public/textures/patterns/checker.png -------------------------------------------------------------------------------- /src/plugins/mobile-ui/public/webcomponents/app-menu/app-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/public/webcomponents/app-menu/app-menu.html -------------------------------------------------------------------------------- /src/plugins/mobile-ui/public/webcomponents/dual-thumbstick/dual-thumbstick.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/public/webcomponents/dual-thumbstick/dual-thumbstick.html -------------------------------------------------------------------------------- /src/plugins/mobile-ui/public/webcomponents/dual-thumbstick/js/trackpad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/public/webcomponents/dual-thumbstick/js/trackpad.js -------------------------------------------------------------------------------- /src/plugins/mobile-ui/public/webcomponents/dual-thumbstick/js/vector2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/public/webcomponents/dual-thumbstick/js/vector2.js -------------------------------------------------------------------------------- /src/plugins/mobile-ui/public/webcomponents/grid-menu/grid-menu-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/public/webcomponents/grid-menu/grid-menu-button.html -------------------------------------------------------------------------------- /src/plugins/mobile-ui/public/webcomponents/grid-menu/grid-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/public/webcomponents/grid-menu/grid-menu.html -------------------------------------------------------------------------------- /src/plugins/mobile-ui/public/webcomponents/orov-mobile-battery/orov-mobile-battery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/public/webcomponents/orov-mobile-battery/orov-mobile-battery.html -------------------------------------------------------------------------------- /src/plugins/mobile-ui/public/webcomponents/orov-mobile-compass/orov-mobile-compass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/public/webcomponents/orov-mobile-compass/orov-mobile-compass.html -------------------------------------------------------------------------------- /src/plugins/mobile-ui/public/webcomponents/orov-mobile-controls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/public/webcomponents/orov-mobile-controls.html -------------------------------------------------------------------------------- /src/plugins/mobile-ui/public/webcomponents/orov-mobile-depth/orov-mobile-depth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/public/webcomponents/orov-mobile-depth/orov-mobile-depth.html -------------------------------------------------------------------------------- /src/plugins/mobile-ui/public/webcomponents/orov-window/orov-window.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/public/webcomponents/orov-window/orov-window.html -------------------------------------------------------------------------------- /src/plugins/mobile-ui/public/webcomponents/settings-menu/settings-menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/public/webcomponents/settings-menu/settings-menu.html -------------------------------------------------------------------------------- /src/plugins/mobile-ui/social.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/social.ejs -------------------------------------------------------------------------------- /src/plugins/mobile-ui/social.ejs.icon: -------------------------------------------------------------------------------- 1 | social:group 2 | -------------------------------------------------------------------------------- /src/plugins/mobile-ui/update.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/update.ejs -------------------------------------------------------------------------------- /src/plugins/mobile-ui/update.ejs.icon: -------------------------------------------------------------------------------- 1 | notification:system-update 2 | -------------------------------------------------------------------------------- /src/plugins/mobile-ui/vr.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/mobile-ui/vr.ejs -------------------------------------------------------------------------------- /src/plugins/mobile-ui/vr.ejs.icon: -------------------------------------------------------------------------------- 1 | icons:visibility 2 | -------------------------------------------------------------------------------- /src/plugins/navigation-data/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/navigation-data/index.js -------------------------------------------------------------------------------- /src/plugins/navigation-data/public/diagnostics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/navigation-data/public/diagnostics.html -------------------------------------------------------------------------------- /src/plugins/navigation-data/public/js/navigation-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/navigation-data/public/js/navigation-data.js -------------------------------------------------------------------------------- /src/plugins/navigation-data/public/webcomponents/attitude-indicator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/navigation-data/public/webcomponents/attitude-indicator.html -------------------------------------------------------------------------------- /src/plugins/navigation-data/public/webcomponents/orov-horizon-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/navigation-data/public/webcomponents/orov-horizon-behavior.html -------------------------------------------------------------------------------- /src/plugins/navigation-data/public/webcomponents/orov-horizon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/navigation-data/public/webcomponents/orov-horizon.html -------------------------------------------------------------------------------- /src/plugins/navigation-data/public/webcomponents/topdowncompass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/navigation-data/public/webcomponents/topdowncompass.html -------------------------------------------------------------------------------- /src/plugins/new-ui/cockpit.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/new-ui/cockpit.ejs -------------------------------------------------------------------------------- /src/plugins/new-ui/cockpit.ejs.icon: -------------------------------------------------------------------------------- 1 | device:airplanemode-active 2 | -------------------------------------------------------------------------------- /src/plugins/new-ui/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/new-ui/header.ejs -------------------------------------------------------------------------------- /src/plugins/new-ui/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/new-ui/index.js -------------------------------------------------------------------------------- /src/plugins/new-ui/media/compasst.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/new-ui/media/compasst.svg -------------------------------------------------------------------------------- /src/plugins/new-ui/media/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/new-ui/media/power.svg -------------------------------------------------------------------------------- /src/plugins/new-ui/new-ui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/new-ui/new-ui.jpg -------------------------------------------------------------------------------- /src/plugins/new-ui/public/all-imports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/new-ui/public/all-imports.html -------------------------------------------------------------------------------- /src/plugins/new-ui/public/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/new-ui/public/bower.json -------------------------------------------------------------------------------- /src/plugins/new-ui/public/cockpit.ejs.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/plugins/new-ui/public/css/classicstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/new-ui/public/css/classicstyle.css -------------------------------------------------------------------------------- /src/plugins/new-ui/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/new-ui/public/css/style.css -------------------------------------------------------------------------------- /src/plugins/new-ui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/new-ui/public/index.html -------------------------------------------------------------------------------- /src/plugins/new-ui/public/js/lib/0_jquery.svg.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/new-ui/public/js/lib/0_jquery.svg.min.js -------------------------------------------------------------------------------- /src/plugins/new-ui/public/js/lib/1_jquery.svgdom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/new-ui/public/js/lib/1_jquery.svgdom.min.js -------------------------------------------------------------------------------- /src/plugins/new-ui/public/js/lib/2_jquery.svganim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/new-ui/public/js/lib/2_jquery.svganim.min.js -------------------------------------------------------------------------------- /src/plugins/new-ui/public/js/new-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/new-ui/public/js/new-ui.js -------------------------------------------------------------------------------- /src/plugins/new-ui/public/webcomponents/compass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/new-ui/public/webcomponents/compass.html -------------------------------------------------------------------------------- /src/plugins/new-ui/public/webcomponents/depth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/new-ui/public/webcomponents/depth.html -------------------------------------------------------------------------------- /src/plugins/new-ui/public/webcomponents/new-ui-styles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/new-ui/public/webcomponents/new-ui-styles.html -------------------------------------------------------------------------------- /src/plugins/new-ui/public/webcomponents/new-ui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/new-ui/public/webcomponents/new-ui.html -------------------------------------------------------------------------------- /src/plugins/new-ui/public/webcomponents/power-slim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/new-ui/public/webcomponents/power-slim.html -------------------------------------------------------------------------------- /src/plugins/new-ui/public/webcomponents/power.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/new-ui/public/webcomponents/power.html -------------------------------------------------------------------------------- /src/plugins/new-ui/public/webcomponents/switches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/new-ui/public/webcomponents/switches.html -------------------------------------------------------------------------------- /src/plugins/new-ui/public/webcomponents/throttle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/new-ui/public/webcomponents/throttle.html -------------------------------------------------------------------------------- /src/plugins/new-ui/public/webcomponents/time-slim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/new-ui/public/webcomponents/time-slim.html -------------------------------------------------------------------------------- /src/plugins/new-ui/public/webcomponents/time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/new-ui/public/webcomponents/time.html -------------------------------------------------------------------------------- /src/plugins/new-ui/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/new-ui/readme.md -------------------------------------------------------------------------------- /src/plugins/notifications/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/notifications/README.md -------------------------------------------------------------------------------- /src/plugins/notifications/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/notifications/index.js -------------------------------------------------------------------------------- /src/plugins/notifications/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/notifications/npm-shrinkwrap.json -------------------------------------------------------------------------------- /src/plugins/notifications/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/notifications/package.json -------------------------------------------------------------------------------- /src/plugins/notifications/public/js/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/notifications/public/js/notifications.js -------------------------------------------------------------------------------- /src/plugins/notifications/public/webcomponents/orov-notifications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/notifications/public/webcomponents/orov-notifications.html -------------------------------------------------------------------------------- /src/plugins/notifications/shrinkwrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/notifications/shrinkwrap.yaml -------------------------------------------------------------------------------- /src/plugins/notifications/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/notifications/yarn.lock -------------------------------------------------------------------------------- /src/plugins/peer-view/_comms.ejs: -------------------------------------------------------------------------------- 1 |
This is mission control for ROV XYZ
2 | COMS STATION 3 | -------------------------------------------------------------------------------- /src/plugins/peer-view/_comms.ejs.icon: -------------------------------------------------------------------------------- 1 | communication:contact-phone -------------------------------------------------------------------------------- /src/plugins/peer-view/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/peer-view/index.js -------------------------------------------------------------------------------- /src/plugins/peer-view/misctrl.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/peer-view/misctrl.ejs -------------------------------------------------------------------------------- /src/plugins/peer-view/misctrl.ejs.icon: -------------------------------------------------------------------------------- 1 | hardware:headset-mic -------------------------------------------------------------------------------- /src/plugins/peer-view/missioncontrol/cameras.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/peer-view/missioncontrol/cameras.ejs -------------------------------------------------------------------------------- /src/plugins/peer-view/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/peer-view/npm-shrinkwrap.json -------------------------------------------------------------------------------- /src/plugins/peer-view/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/peer-view/package.json -------------------------------------------------------------------------------- /src/plugins/peer-view/public/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/peer-view/public/bower.json -------------------------------------------------------------------------------- /src/plugins/peer-view/public/js/peerview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/peer-view/public/js/peerview.js -------------------------------------------------------------------------------- /src/plugins/peer-view/public/webcomponents/orov-mc-assignments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/peer-view/public/webcomponents/orov-mc-assignments.html -------------------------------------------------------------------------------- /src/plugins/peer-view/public/webcomponents/orov-mc-status-indicator-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/peer-view/public/webcomponents/orov-mc-status-indicator-behavior.html -------------------------------------------------------------------------------- /src/plugins/peer-view/public/webcomponents/orov-mc-status-indicator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/peer-view/public/webcomponents/orov-mc-status-indicator.html -------------------------------------------------------------------------------- /src/plugins/peer-view/shrinkwrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/peer-view/shrinkwrap.yaml -------------------------------------------------------------------------------- /src/plugins/peer-view/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/peer-view/yarn.lock -------------------------------------------------------------------------------- /src/plugins/rov-default-applets/_system_diagnostics.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/rov-default-applets/_system_diagnostics.ejs -------------------------------------------------------------------------------- /src/plugins/rov-default-applets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/rov-default-applets/index.js -------------------------------------------------------------------------------- /src/plugins/rov-default-applets/public/js/system_diagnostics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/rov-default-applets/public/js/system_diagnostics.js -------------------------------------------------------------------------------- /src/plugins/rovpilot-wire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/rovpilot-wire/README.md -------------------------------------------------------------------------------- /src/plugins/rovpilot-wire/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/rovpilot-wire/index.js -------------------------------------------------------------------------------- /src/plugins/rovpilot-wire/public/js/camera-tilt-widgets-autodiscovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/rovpilot-wire/public/js/camera-tilt-widgets-autodiscovery.js -------------------------------------------------------------------------------- /src/plugins/rovpilot-wire/public/js/rovpilot-wire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/rovpilot-wire/public/js/rovpilot-wire.js -------------------------------------------------------------------------------- /src/plugins/rovpilot-wire/public/ui-templates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/rovpilot-wire/public/ui-templates.html -------------------------------------------------------------------------------- /src/plugins/rovpilot-wire/public/webcomponents/orov-depthHold-switch-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/rovpilot-wire/public/webcomponents/orov-depthHold-switch-behavior.html -------------------------------------------------------------------------------- /src/plugins/rovpilot-wire/public/webcomponents/orov-depthHold-switch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/rovpilot-wire/public/webcomponents/orov-depthHold-switch.html -------------------------------------------------------------------------------- /src/plugins/rovpilot-wire/public/webcomponents/orov-depthHold.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/rovpilot-wire/public/webcomponents/orov-depthHold.html -------------------------------------------------------------------------------- /src/plugins/rovpilot-wire/public/webcomponents/orov-headingHold-switch-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/rovpilot-wire/public/webcomponents/orov-headingHold-switch-behavior.html -------------------------------------------------------------------------------- /src/plugins/rovpilot-wire/public/webcomponents/orov-headingHold-switch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/rovpilot-wire/public/webcomponents/orov-headingHold-switch.html -------------------------------------------------------------------------------- /src/plugins/rovpilot-wire/public/webcomponents/orov-headingHold.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/rovpilot-wire/public/webcomponents/orov-headingHold.html -------------------------------------------------------------------------------- /src/plugins/rovpilot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/rovpilot/README.md -------------------------------------------------------------------------------- /src/plugins/rovpilot/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/rovpilot/index.js -------------------------------------------------------------------------------- /src/plugins/rovpilot/public/js/rovpilot-widgets-autodiscovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/rovpilot/public/js/rovpilot-widgets-autodiscovery.js -------------------------------------------------------------------------------- /src/plugins/rovpilot/public/js/rovpilot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/rovpilot/public/js/rovpilot.js -------------------------------------------------------------------------------- /src/plugins/rovpilot/public/webcomponents/orov-thrustfactor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/rovpilot/public/webcomponents/orov-thrustfactor.html -------------------------------------------------------------------------------- /src/plugins/system-greeting/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/system-greeting/index.js -------------------------------------------------------------------------------- /src/plugins/telemetry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/telemetry/README.md -------------------------------------------------------------------------------- /src/plugins/telemetry/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/telemetry/index.js -------------------------------------------------------------------------------- /src/plugins/telemetry/public/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/telemetry/public/bower.json -------------------------------------------------------------------------------- /src/plugins/telemetry/public/js/telemetry-widgets-autodiscovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/telemetry/public/js/telemetry-widgets-autodiscovery.js -------------------------------------------------------------------------------- /src/plugins/telemetry/public/js/telemetry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/telemetry/public/js/telemetry.js -------------------------------------------------------------------------------- /src/plugins/telemetry/public/webcomponents/orov-telemetry-monitor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/telemetry/public/webcomponents/orov-telemetry-monitor.html -------------------------------------------------------------------------------- /src/plugins/telemetry/public/webcomponents/telemetry-graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/telemetry/public/webcomponents/telemetry-graph.html -------------------------------------------------------------------------------- /src/plugins/telemetry/public/webcomponents/telemetry-item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/telemetry/public/webcomponents/telemetry-item.html -------------------------------------------------------------------------------- /src/plugins/telemetry/telemetry.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/telemetry/telemetry.ejs -------------------------------------------------------------------------------- /src/plugins/telemetry/telemetry.ejs.icon: -------------------------------------------------------------------------------- 1 | icons:trending-up -------------------------------------------------------------------------------- /src/plugins/thrusters2x1/diagnostics.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/thrusters2x1/diagnostics.ejs -------------------------------------------------------------------------------- /src/plugins/thrusters2x1/diagnostics.ejs.icon: -------------------------------------------------------------------------------- 1 | places:business-center 2 | -------------------------------------------------------------------------------- /src/plugins/thrusters2x1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/thrusters2x1/index.js -------------------------------------------------------------------------------- /src/plugins/thrusters2x1/public/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/thrusters2x1/public/bower.json -------------------------------------------------------------------------------- /src/plugins/thrusters2x1/public/js/thrusters2x1-widgets-autodiscovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/thrusters2x1/public/js/thrusters2x1-widgets-autodiscovery.js -------------------------------------------------------------------------------- /src/plugins/thrusters2x1/public/js/thrusters2x1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/thrusters2x1/public/js/thrusters2x1.js -------------------------------------------------------------------------------- /src/plugins/thrusters2x1/public/webcomponents/orov-thrusters2x1-motortest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/thrusters2x1/public/webcomponents/orov-thrusters2x1-motortest.html -------------------------------------------------------------------------------- /src/plugins/translations.en-US/classic-ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/classic-ui.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/index.js -------------------------------------------------------------------------------- /src/plugins/translations.en-US/mobile-ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/mobile-ui.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/new-ui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/new-ui.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/newui-compass.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/plugins/translations.en-US/newui-power.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/plugins/translations.en-US/newui-time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/newui-time.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-appletswitcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/orov-appletswitcher.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-battery-status.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-blackbox-downloader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/orov-blackbox-downloader.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-blackbox-status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/orov-blackbox-status.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-blackbox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/orov-blackbox.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-connection-health.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-depthhold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/orov-depthhold.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-events-graph.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/orov-example.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-external-brightness-indicator.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-geomux.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-headinghold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/orov-headinghold.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-headsup-menu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/orov-headsup-menu.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-horizon.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-inputs-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/orov-inputs-list.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-internetcontrol-pilotselector.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-internetcontrol-status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/orov-internetcontrol-status.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-lasers.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-login.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-mobile-battery.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-mobile-compass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/orov-mobile-compass.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-mobile-controls.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-mobile-depth.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-newui-compass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/orov-newui-compass.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-newui-depth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/orov-newui-depth.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-newui-power.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/orov-newui-power.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-newui-switches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/orov-newui-switches.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-newui-throttle.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-newui-time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/orov-newui-time.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-ping-graph.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-plugin-finder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/orov-plugin-finder.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-plugin-manager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/orov-plugin-manager.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-serial-monitor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/orov-serial-monitor.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-servo-tilt.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-settings-manager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/orov-settings-manager.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-software-version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/orov-software-version.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-telemetry-item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/orov-telemetry-item.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-telemetry-monitor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/orov-telemetry-monitor.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-thrusters2x1-motortest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/orov-thrusters2x1-motortest.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-thrustfactor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/orov-thrustfactor.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/orov-time.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-topdowncompass.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-twitch-stream-status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/orov-twitch-stream-status.json -------------------------------------------------------------------------------- /src/plugins/translations.en-US/orov-video.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/plugins/translations.en-US/settings-menu.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/plugins/translations.en-US/translation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/translations.en-US/translation.json -------------------------------------------------------------------------------- /src/plugins/video/.gitignore: -------------------------------------------------------------------------------- 1 | public/js/socket.io-stream.js 2 | -------------------------------------------------------------------------------- /src/plugins/video/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/video/index.js -------------------------------------------------------------------------------- /src/plugins/video/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/video/npm-shrinkwrap.json -------------------------------------------------------------------------------- /src/plugins/video/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/video/package.json -------------------------------------------------------------------------------- /src/plugins/video/public/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/video/public/bower.json -------------------------------------------------------------------------------- /src/plugins/video/public/js/video-widgets-autodiscovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/video/public/js/video-widgets-autodiscovery.js -------------------------------------------------------------------------------- /src/plugins/video/public/js/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/video/public/js/video.js -------------------------------------------------------------------------------- /src/plugins/video/public/webcomponents/orov-video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/video/public/webcomponents/orov-video.html -------------------------------------------------------------------------------- /src/plugins/video/shrinkwrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/video/shrinkwrap.yaml -------------------------------------------------------------------------------- /src/plugins/video/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/plugins/video/yarn.lock -------------------------------------------------------------------------------- /src/static/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | -------------------------------------------------------------------------------- /src/static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/README.md -------------------------------------------------------------------------------- /src/static/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/bower.json -------------------------------------------------------------------------------- /src/static/css.old/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/css.old/bootstrap-responsive.css -------------------------------------------------------------------------------- /src/static/css.old/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/css.old/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /src/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/favicon.ico -------------------------------------------------------------------------------- /src/static/js/P2PStoreAndForward.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/js/P2PStoreAndForward.js -------------------------------------------------------------------------------- /src/static/js/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/js/analytics.js -------------------------------------------------------------------------------- /src/static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/js/app.js -------------------------------------------------------------------------------- /src/static/js/autotrack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/js/autotrack.js -------------------------------------------------------------------------------- /src/static/js/cockpit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/js/cockpit.js -------------------------------------------------------------------------------- /src/static/js/eventEmitterStoreAndForward.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/js/eventEmitterStoreAndForward.js -------------------------------------------------------------------------------- /src/static/js/libs/eventemitter2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/js/libs/eventemitter2.js -------------------------------------------------------------------------------- /src/static/js/libs/gamepad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/js/libs/gamepad.js -------------------------------------------------------------------------------- /src/static/js/libs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/js/libs/readme.md -------------------------------------------------------------------------------- /src/static/js/missioncontrol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/js/missioncontrol.js -------------------------------------------------------------------------------- /src/static/js/no-scroll-fullscreen-viewport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/js/no-scroll-fullscreen-viewport.js -------------------------------------------------------------------------------- /src/static/js/replay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/js/replay.js -------------------------------------------------------------------------------- /src/static/js/simpledb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/js/simpledb.js -------------------------------------------------------------------------------- /src/static/js/socketIOStoreAndForward.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/js/socketIOStoreAndForward.js -------------------------------------------------------------------------------- /src/static/js/socketIOtoEmitterBridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/js/socketIOtoEmitterBridge.js -------------------------------------------------------------------------------- /src/static/js/utilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/js/utilities.js -------------------------------------------------------------------------------- /src/static/loading_screen_quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/loading_screen_quotes.json -------------------------------------------------------------------------------- /src/static/npm-shrinkwrap.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "static-openrov" 3 | } 4 | -------------------------------------------------------------------------------- /src/static/presets/OROVClassic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/presets/OROVClassic.json -------------------------------------------------------------------------------- /src/static/themes/OpenROV/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/themes/OpenROV/css/style.css -------------------------------------------------------------------------------- /src/static/themes/OpenROV/img/openrov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/themes/OpenROV/img/openrov.png -------------------------------------------------------------------------------- /src/static/webcomponents/diagnostics/diagnostics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/webcomponents/diagnostics/diagnostics.html -------------------------------------------------------------------------------- /src/static/webcomponents/drop-in-dialog/drop-in-dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/webcomponents/drop-in-dialog/drop-in-dialog.html -------------------------------------------------------------------------------- /src/static/webcomponents/json-schema-editor/json-schema-editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/webcomponents/json-schema-editor/json-schema-editor.html -------------------------------------------------------------------------------- /src/static/webcomponents/menu/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/webcomponents/menu/menu.html -------------------------------------------------------------------------------- /src/static/webcomponents/openrov-proxy/openrov-proxy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/webcomponents/openrov-proxy/openrov-proxy.html -------------------------------------------------------------------------------- /src/static/webcomponents/orov-behaviors/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/webcomponents/orov-behaviors/bower.json -------------------------------------------------------------------------------- /src/static/webcomponents/orov-behaviors/orov-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/webcomponents/orov-behaviors/orov-behavior.html -------------------------------------------------------------------------------- /src/static/webcomponents/orov-behaviors/orov-emitter-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/webcomponents/orov-behaviors/orov-emitter-behavior.html -------------------------------------------------------------------------------- /src/static/webcomponents/orov-behaviors/orov-globalization-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/webcomponents/orov-behaviors/orov-globalization-behavior.html -------------------------------------------------------------------------------- /src/static/webcomponents/orov-behaviors/test/orov-emitter-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/webcomponents/orov-behaviors/test/orov-emitter-behavior.html -------------------------------------------------------------------------------- /src/static/webcomponents/orov-behaviors/testelement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/webcomponents/orov-behaviors/testelement.html -------------------------------------------------------------------------------- /src/static/webcomponents/orov-behaviors/utilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/webcomponents/orov-behaviors/utilities.js -------------------------------------------------------------------------------- /src/static/webcomponents/terms-of-use/terms-of-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/static/webcomponents/terms-of-use/terms-of-use.html -------------------------------------------------------------------------------- /src/system-plugins/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/Readme.md -------------------------------------------------------------------------------- /src/system-plugins/cloud-profile/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/cloud-profile/index.js -------------------------------------------------------------------------------- /src/system-plugins/cloud-profile/public/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/cloud-profile/public/bower.json -------------------------------------------------------------------------------- /src/system-plugins/cloud-profile/public/js/cloud-profile.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/system-plugins/cloud-profile/public/webcomponents/orov-login-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/cloud-profile/public/webcomponents/orov-login-behavior.html -------------------------------------------------------------------------------- /src/system-plugins/cloud-profile/public/webcomponents/orov-login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/cloud-profile/public/webcomponents/orov-login.html -------------------------------------------------------------------------------- /src/system-plugins/globalization/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/globalization/index.js -------------------------------------------------------------------------------- /src/system-plugins/globalization/public/js/globlization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/globalization/public/js/globlization.js -------------------------------------------------------------------------------- /src/system-plugins/globalization/public/js/initGlobalization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/globalization/public/js/initGlobalization.js -------------------------------------------------------------------------------- /src/system-plugins/input-controller/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/input-controller/Readme.md -------------------------------------------------------------------------------- /src/system-plugins/input-controller/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/input-controller/index.js -------------------------------------------------------------------------------- /src/system-plugins/input-controller/public/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/input-controller/public/bower.json -------------------------------------------------------------------------------- /src/system-plugins/input-controller/public/js/input-controller-widgets-autodiscovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/input-controller/public/js/input-controller-widgets-autodiscovery.js -------------------------------------------------------------------------------- /src/system-plugins/input-controller/public/js/input-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/input-controller/public/js/input-controller.js -------------------------------------------------------------------------------- /src/system-plugins/input-controller/public/js/preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/input-controller/public/js/preset.js -------------------------------------------------------------------------------- /src/system-plugins/input-controller/public/webcomponents/orov-inputs-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/input-controller/public/webcomponents/orov-inputs-list.html -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/Install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/Install.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/README.md -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/Uninstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/Uninstall.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/index.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/install/files/custom_50x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/install/files/custom_50x.html -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/install/files/nginx.location: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/install/files/nginx.location -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/install/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/install/manifest.json -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/modules/BoardInterface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/modules/BoardInterface.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/modules/CPUInterface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/modules/CPUInterface.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/modules/Interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/modules/Interface.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/modules/SerialBridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/modules/SerialBridge.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/modules/TridentSerialBridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/modules/TridentSerialBridge.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/board.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/board.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/bridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/bridge.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/cpuPinmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/cpuPinmap.json -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/install/files/BuildFirmware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/install/files/BuildFirmware.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/install/files/FlashESCs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/install/files/FlashESCs.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/install/files/FlashFirmware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/install/files/FlashFirmware.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/install/files/dt-overlays/OROV-CB25-00A0.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/install/files/dt-overlays/OROV-CB25-00A0.dts -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/install/files/esc.conf: -------------------------------------------------------------------------------- 1 | preseed -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/install/files/flashBootloader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/install/files/flashBootloader.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/install/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/install/manifest.json -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/install/scripts/compile-dt-overlays.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/install/scripts/compile-dt-overlays.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/install/scripts/install-orov-cb25-overlay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/install/scripts/install-orov-cb25-overlay.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/install/scripts/uninstall-orov-cb25-overlay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/install/scripts/uninstall-orov-cb25-overlay.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/lib/BuildMCUFirmware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/lib/BuildMCUFirmware.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/lib/FlashESCFirmware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/lib/FlashESCFirmware.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/lib/FlashESCS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/lib/FlashESCS.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/lib/FlashMCUFirmware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/lib/FlashMCUFirmware.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/lib/ResetMCU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/lib/ResetMCU.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/lib/ResetMCU.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/lib/ResetMCU.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/setup.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/statemachine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/boards/2x/statemachine.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/cpu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/cpu.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/cpu/revisionInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/cpu/revisionInfo.json -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/cpu/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/cpu/setup.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/install/files/2xBoardInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/install/files/2xBoardInfo.json -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/install/files/addswapfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/install/files/addswapfile.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/install/files/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/install/files/rc.local -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/install/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/install/manifest.json -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/install/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/install/scripts/post-install.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/beaglebone/install/scripts/pre-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/beaglebone/install/scripts/pre-install.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/mock/board.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/mock/board.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/mock/boards/mock3000/bridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/mock/boards/mock3000/bridge.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/mock/boards/mock3000/cpuPinmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/mock/boards/mock3000/cpuPinmap.json -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/mock/boards/mock3000/eeprom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/mock/boards/mock3000/eeprom.json -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/mock/boards/mock3000/install/files/dt-overlays/TestDT.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/mock/boards/mock3000/install/files/dt-overlays/TestDT.dts -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/mock/boards/mock3000/install/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/mock/boards/mock3000/install/manifest.json -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/mock/boards/mock3000/install/scripts/compile-dt-overlays.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/mock/boards/mock3000/install/scripts/compile-dt-overlays.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/mock/boards/mock3000/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/mock/boards/mock3000/setup.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/mock/boards/mock3000/statemachine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/mock/boards/mock3000/statemachine.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/mock/cpu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/mock/cpu.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/mock/cpu/revisionInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/mock/cpu/revisionInfo.json -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/mock/cpu/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/mock/cpu/setup.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/mock/install/files/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/mock/install/files/test.txt -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/mock/install/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/mock/install/manifest.json -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/mock/install/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/mock/install/scripts/post-install.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/mock/install/scripts/post-uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/mock/install/scripts/post-uninstall.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/mock/install/scripts/pre-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/mock/install/scripts/pre-install.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/mock/install/scripts/pre-uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/mock/install/scripts/pre-uninstall.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/board.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/board.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/cpuPinmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/cpuPinmap.json -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/eeprom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/eeprom.json -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/install/files/buildSAMD.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/install/files/buildSAMD.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/install/files/debugSAMD.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/install/files/debugSAMD.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/install/files/flashEEPROM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/install/files/flashEEPROM.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/install/files/flashESCS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/install/files/flashESCS.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/install/files/flashSAMD.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/install/files/flashSAMD.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/install/files/openocd_samd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/install/files/openocd_samd.cfg -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/install/files/resetSAMD.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/install/files/resetSAMD.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/install/files/selectESCA.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/install/files/selectESCA.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/install/files/selectESCB.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/install/files/selectESCB.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/install/files/selectESCC.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/install/files/selectESCC.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/install/files/selectSAMD.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/install/files/selectSAMD.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/install/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/install/manifest.json -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/lib/ResetMCU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/lib/ResetMCU.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/setup.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/statemachine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev10/statemachine.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev8/cpuPinmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev8/cpuPinmap.json -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev8/eeprom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev8/eeprom.json -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev8/install/files/buildSAMD.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev8/install/files/buildSAMD.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev8/install/files/debugSAMD.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev8/install/files/debugSAMD.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev8/install/files/flashEEPROM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev8/install/files/flashEEPROM.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev8/install/files/flashSAMD.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev8/install/files/flashSAMD.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev8/install/files/openocd_samd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev8/install/files/openocd_samd.cfg -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev8/install/files/resetSAMD.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev8/install/files/resetSAMD.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev8/install/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev8/install/manifest.json -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev8/lib/ResetMCU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev8/lib/ResetMCU.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev8/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev8/setup.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev8/statemachine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev8/statemachine.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev9/cpuPinmap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev9/cpuPinmap.json -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev9/eeprom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev9/eeprom.json -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev9/install/files/buildSAMD.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev9/install/files/buildSAMD.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev9/install/files/debugSAMD.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev9/install/files/debugSAMD.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev9/install/files/flashEEPROM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev9/install/files/flashEEPROM.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev9/install/files/flashSAMD.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev9/install/files/flashSAMD.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev9/install/files/openocd_samd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev9/install/files/openocd_samd.cfg -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev9/install/files/resetSAMD.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev9/install/files/resetSAMD.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev9/install/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev9/install/manifest.json -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev9/lib/ResetMCU.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev9/lib/ResetMCU.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev9/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev9/setup.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev9/statemachine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/boards/rev9/statemachine.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/cpu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/cpu.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/cpu/EEPROMFlasher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/cpu/EEPROMFlasher.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/cpu/OtherBoards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/cpu/OtherBoards.json -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/cpu/revisionInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/cpu/revisionInfo.json -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/cpu/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/cpu/setup.js -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/install/files/dt-overlays/openrov-eeprom.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/install/files/dt-overlays/openrov-eeprom.dts -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/install/files/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/install/files/rc.local -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/install/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/install/manifest.json -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/install/scripts/compile-dt-overlays.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/install/scripts/compile-dt-overlays.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/install/scripts/post-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/install/scripts/post-install.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/platforms/raspberrypi/install/scripts/pre-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/platforms/raspberrypi/install/scripts/pre-install.sh -------------------------------------------------------------------------------- /src/system-plugins/platform-manager/public/platform-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/platform-manager/public/platform-manager.js -------------------------------------------------------------------------------- /src/system-plugins/plugin-finder/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/plugin-finder/Readme.md -------------------------------------------------------------------------------- /src/system-plugins/plugin-finder/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/plugin-finder/index.js -------------------------------------------------------------------------------- /src/system-plugins/plugin-finder/plugins.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/plugin-finder/plugins.ejs -------------------------------------------------------------------------------- /src/system-plugins/plugin-finder/plugins.ejs.icon: -------------------------------------------------------------------------------- 1 | icons:extension 2 | -------------------------------------------------------------------------------- /src/system-plugins/plugin-finder/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/plugin-finder/public/css/style.css -------------------------------------------------------------------------------- /src/system-plugins/plugin-finder/public/js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/plugin-finder/public/js/config.js -------------------------------------------------------------------------------- /src/system-plugins/plugin-finder/public/js/plugin-finder-widgets-autodiscovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/plugin-finder/public/js/plugin-finder-widgets-autodiscovery.js -------------------------------------------------------------------------------- /src/system-plugins/plugin-finder/public/js/plugin-finder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/plugin-finder/public/js/plugin-finder.js -------------------------------------------------------------------------------- /src/system-plugins/plugin-finder/public/webcomponents/orov-plugin-finder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/plugin-finder/public/webcomponents/orov-plugin-finder.html -------------------------------------------------------------------------------- /src/system-plugins/plugin-manager/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/plugin-manager/Readme.md -------------------------------------------------------------------------------- /src/system-plugins/plugin-manager/addons.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/plugin-manager/addons.ejs -------------------------------------------------------------------------------- /src/system-plugins/plugin-manager/addons.ejs.icon: -------------------------------------------------------------------------------- 1 | icons:extension 2 | -------------------------------------------------------------------------------- /src/system-plugins/plugin-manager/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/plugin-manager/index.js -------------------------------------------------------------------------------- /src/system-plugins/plugin-manager/public/js/plugin-manager-widgets-autodiscovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/plugin-manager/public/js/plugin-manager-widgets-autodiscovery.js -------------------------------------------------------------------------------- /src/system-plugins/plugin-manager/public/js/plugin-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/plugin-manager/public/js/plugin-manager.js -------------------------------------------------------------------------------- /src/system-plugins/plugin-manager/public/webcomponents/orov-plugin-manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/plugin-manager/public/webcomponents/orov-plugin-manager.html -------------------------------------------------------------------------------- /src/system-plugins/rov-beacon/beacon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/rov-beacon/beacon.js -------------------------------------------------------------------------------- /src/system-plugins/rov-beacon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/rov-beacon/index.js -------------------------------------------------------------------------------- /src/system-plugins/settings-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/settings-manager/README.md -------------------------------------------------------------------------------- /src/system-plugins/settings-manager/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/settings-manager/index.js -------------------------------------------------------------------------------- /src/system-plugins/settings-manager/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/settings-manager/npm-shrinkwrap.json -------------------------------------------------------------------------------- /src/system-plugins/settings-manager/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/settings-manager/package.json -------------------------------------------------------------------------------- /src/system-plugins/settings-manager/public/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/settings-manager/public/bower.json -------------------------------------------------------------------------------- /src/system-plugins/settings-manager/public/js/settings-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/settings-manager/public/js/settings-manager.js -------------------------------------------------------------------------------- /src/system-plugins/settings-manager/public/webcomponents/foundationcss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/settings-manager/public/webcomponents/foundationcss.html -------------------------------------------------------------------------------- /src/system-plugins/settings-manager/public/webcomponents/normalizecss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/settings-manager/public/webcomponents/normalizecss.html -------------------------------------------------------------------------------- /src/system-plugins/settings-manager/public/webcomponents/orov-settings-manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/settings-manager/public/webcomponents/orov-settings-manager.html -------------------------------------------------------------------------------- /src/system-plugins/settings-manager/settings.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/settings-manager/settings.ejs -------------------------------------------------------------------------------- /src/system-plugins/settings-manager/settings.ejs.icon: -------------------------------------------------------------------------------- 1 | icons:settings 2 | -------------------------------------------------------------------------------- /src/system-plugins/settings-manager/shrinkwrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/settings-manager/shrinkwrap.yaml -------------------------------------------------------------------------------- /src/system-plugins/settings-manager/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/settings-manager/yarn.lock -------------------------------------------------------------------------------- /src/system-plugins/software-update-alert/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/software-update-alert/Readme.md -------------------------------------------------------------------------------- /src/system-plugins/software-update-alert/_updates.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/software-update-alert/_updates.ejs -------------------------------------------------------------------------------- /src/system-plugins/software-update-alert/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/software-update-alert/index.js -------------------------------------------------------------------------------- /src/system-plugins/software-update-alert/public/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/software-update-alert/public/bower.json -------------------------------------------------------------------------------- /src/system-plugins/software-update-alert/public/js/software-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/software-update-alert/public/js/software-update.js -------------------------------------------------------------------------------- /src/system-plugins/software-update-alert/public/webcomponents/orov-software-update-progress-tester.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/software-update-alert/public/webcomponents/orov-software-update-progress-tester.html -------------------------------------------------------------------------------- /src/system-plugins/software-update-alert/public/webcomponents/orov-software-update-progress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/software-update-alert/public/webcomponents/orov-software-update-progress.html -------------------------------------------------------------------------------- /src/system-plugins/software-update-alert/public/webcomponents/orov-software-update-router.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/software-update-alert/public/webcomponents/orov-software-update-router.html -------------------------------------------------------------------------------- /src/system-plugins/software-update-alert/public/webcomponents/orov-software-version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/software-update-alert/public/webcomponents/orov-software-version.html -------------------------------------------------------------------------------- /src/system-plugins/software-update-alert/tests/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/software-update-alert/tests/index.spec.js -------------------------------------------------------------------------------- /src/system-plugins/ui-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/ui-manager/README.md -------------------------------------------------------------------------------- /src/system-plugins/ui-manager/all_imports.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/ui-manager/all_imports.ejs -------------------------------------------------------------------------------- /src/system-plugins/ui-manager/all_scripts.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/ui-manager/all_scripts.ejs -------------------------------------------------------------------------------- /src/system-plugins/ui-manager/base.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/ui-manager/base.ejs -------------------------------------------------------------------------------- /src/system-plugins/ui-manager/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/ui-manager/index.js -------------------------------------------------------------------------------- /src/system-plugins/ui-manager/popup.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/ui-manager/popup.ejs -------------------------------------------------------------------------------- /src/system-plugins/ui-manager/public/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/ui-manager/public/bower.json -------------------------------------------------------------------------------- /src/system-plugins/ui-manager/public/js/cache-ignoreParameters-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/ui-manager/public/js/cache-ignoreParameters-handler.js -------------------------------------------------------------------------------- /src/system-plugins/ui-manager/public/js/nocache-fetch-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/ui-manager/public/js/nocache-fetch-handler.js -------------------------------------------------------------------------------- /src/system-plugins/ui-manager/public/js/precache.txt: -------------------------------------------------------------------------------- 1 | /js/replay.js -------------------------------------------------------------------------------- /src/system-plugins/ui-manager/public/js/ui-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/ui-manager/public/js/ui-manager.js -------------------------------------------------------------------------------- /src/system-plugins/ui-manager/public/webcomponents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/ui-manager/public/webcomponents/README.md -------------------------------------------------------------------------------- /src/system-plugins/ui-manager/public/webcomponents/all-imports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/ui-manager/public/webcomponents/all-imports.html -------------------------------------------------------------------------------- /src/system-plugins/ui-manager/public/webcomponents/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/ui-manager/public/webcomponents/index.html -------------------------------------------------------------------------------- /src/system-plugins/ui-manager/public/webcomponents/orov-appletswitcher-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/ui-manager/public/webcomponents/orov-appletswitcher-behavior.html -------------------------------------------------------------------------------- /src/system-plugins/ui-manager/public/webcomponents/orov-appletswitcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/ui-manager/public/webcomponents/orov-appletswitcher.html -------------------------------------------------------------------------------- /src/system-plugins/ui-manager/public/webcomponents/orov-panel-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/ui-manager/public/webcomponents/orov-panel-behavior.html -------------------------------------------------------------------------------- /src/system-plugins/ui-manager/public/webcomponents/orov-panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/ui-manager/public/webcomponents/orov-panel.html -------------------------------------------------------------------------------- /src/system-plugins/ui-manager/public/webcomponents/orov-widget-registry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/ui-manager/public/webcomponents/orov-widget-registry.html -------------------------------------------------------------------------------- /src/system-plugins/ui-manager/public/webcomponents/switch-behavior.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/ui-manager/public/webcomponents/switch-behavior.html -------------------------------------------------------------------------------- /src/system-plugins/ui-manager/public/webcomponents/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/ui-manager/public/webcomponents/test/index.html -------------------------------------------------------------------------------- /src/system-plugins/ui-manager/public/webcomponents/test/orov-widget-registry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/system-plugins/ui-manager/public/webcomponents/test/orov-widget-registry.html -------------------------------------------------------------------------------- /src/tests/cockpit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/src/tests/cockpit.js -------------------------------------------------------------------------------- /webcomponent_docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/webcomponent_docs/README.md -------------------------------------------------------------------------------- /webcomponent_docs/all-imports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/webcomponent_docs/all-imports.html -------------------------------------------------------------------------------- /webcomponent_docs/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/webcomponent_docs/bower.json -------------------------------------------------------------------------------- /webcomponent_docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/webcomponent_docs/index.html -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpenROV/openrov-cockpit/HEAD/yarn.lock --------------------------------------------------------------------------------