-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Default now updates to the same value as Webcam & Timelapse stream au…
…tomattically, cannot be changed/removed from the plugin. Buttons now become disabled when they are active. Added a reload notification after changing settings to manage issue with bindings after saving. Some debugging cleanup.
- Loading branch information
Showing
9 changed files
with
124 additions
and
29 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,10 @@ | ||
# OctoPrint_MultiCam | ||
Extends the Control tab of OctoPrint, allowing the ability to switch between multiple webcam feeds. | ||
# OctoPrint MultiCam | ||
Extents the Control tab to include a webcam section with buttons that you can configure in the settings to switch between multiple webcam feeds. | ||
|
||
Future updates will include the more options to show different types of streams, as well as the abilitly to show more than one stream at a time. | ||
|
||
## Screenshots | ||
|
||
![Control Preview][Octoprint_MultiCam_Control.png] | ||
|
||
![Setting Preview][Octoprint_MultiCam_Settings.png] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<!-- ko allowBindings: true --> | ||
<div class="jog-panel" id="camControl"> | ||
<div class="jog-panel" id="camControl" style="display: none;"> | ||
<h1>Webcams</h1> | ||
<div data-bind="foreach: settings.settings.plugins.multicam.multicam_profiles"> | ||
<button class="btn btn-block control-box" data-bind="click: $parent.loadWebcam, text: name">Default (before bind)</button> | ||
<button class="btn btn-block control-box" data-bind="click: $parent.loadWebcam, text: name, enable: isButtonEnabled">Default (before bind)</button> | ||
</div> | ||
</div> | ||
<!-- /ko --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters