mirror of
https://github.com/PhotonVision/photonvision
synced 2026-07-03 03:01:40 +00:00
UI Redesign (#22)
* Rework UI into a new, responsive layout * Send two streams (only one is currently downscaled)
This commit is contained in:
committed by
GitHub
parent
aed92e7132
commit
8b46ad1cab
@@ -25,6 +25,16 @@ export const dataHandleMixin = {
|
||||
this.$socket.send(msg);
|
||||
this.$emit('update')
|
||||
},
|
||||
handlePipelineUpdate(key, val) {
|
||||
let msg = this.$msgPack.encode({
|
||||
["changePipelineSetting"]: {
|
||||
[key]: val,
|
||||
["cameraIndex"]: this.$store.getters.currentCameraIndex
|
||||
}
|
||||
});
|
||||
this.$socket.send(msg);
|
||||
this.$emit('update')
|
||||
},
|
||||
handleTruthyPipelineData(val) {
|
||||
let msg = this.$msgPack.encode({
|
||||
["changePipelineSetting"]: {
|
||||
|
||||
Reference in New Issue
Block a user