Skip to content
This repository was archived by the owner on Dec 23, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
202 changes: 187 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,7 @@
"tslint-react": "^3.6.0",
"tslint-react-hooks": "^2.0.0",
"typescript": "^3.3.1",
"typescript-react-intl": "^0.4.0",
"version-from-git": "^1.1.1",
"vsce": "^1.47.0",
"vscode-nls-dev": "^3.2.6",
Expand All @@ -316,6 +317,7 @@
"os": "^0.1.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-intl": "^3.1.9",
"socket.io": "^2.2.0",
"svg-inline-react": "^3.1.0",
"util": "^0.12.1",
Expand Down
12 changes: 6 additions & 6 deletions src/view/components/toolbar/MotionSensorBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,22 @@ const sendMessage = (state: any) => {
const MOTION_SLIDER_PROPS_X: ISliderProps = {
axisLabel: "X",
maxLabel: "Right",
maxValue: 125,
maxValue: 78,
minLabel: "Left",
minValue: -55,
minValue: -78,
type: "motion_x"
};
const MOTION_SLIDER_PROPS_Y: ISliderProps = {
axisLabel: "Y",
maxLabel: "Front",
maxValue: 125,
maxValue: 78,
minLabel: "Back",
minValue: -55,
minValue: -78,
type: "motion_y"
};
const MOTION_SLIDER_PROPS_Z: ISliderProps = {
maxValue: 125,
minValue: -55,
maxValue: 78,
minValue: -78,
minLabel: "Up",
maxLabel: "Down",
type: "motion_z",
Expand Down
Loading