Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(simatec) Responsive Design added #751

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ This feature only works when map creation is enabled in the adapter options!
Placeholder for the next version (at the beginning of the line):
### **WORK IN PROGRESS**
-->
### **WORK IN PROGRESS**
* (simatec) Responsive Design added

### 0.6.18 (2024-12-11)
* (copystring) Add cleaned_area to S8
* (copystring) Bugfixes for Qrevo Curve
Expand Down
76 changes: 57 additions & 19 deletions admin/jsonConfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,69 +5,107 @@
"username": {
"type": "text",
"label": "Login",
"newLine": true
"newLine": true,
"xs": 12,
"sm": 12,
"md": 12,
"lg": 12,
"xl": 12
},
"password": {
"type": "password",
"label": "Password"
"label": "Password",
"xs": 12,
"sm": 12,
"md": 12,
"lg": 12,
"xl": 12
},
"enable_map_creation": {
"type": "checkbox",
"label": "Enable Map Creation",
"newLine": true
"newLine": true,
"xs": 12,
"sm": 12,
"md": 6,
"lg": 6,
"xl": 6
},
"map_creation_interval": {
"type": "number",
"label": "Map Creation Interval",
"newLine": true,
"min": 1,
"max": 240,
"style": {
"width": "198px"
}
"xs": 12,
"sm": 12,
"md": 6,
"lg": 2,
"xl": 2
},
"updateInterval": {
"type": "number",
"label": "Update interval",
"newLine": true,
"min": 60,
"max": 240,
"style": {
"width": "198px"
}
"xs": 12,
"sm": 12,
"md": 6,
"lg": 2,
"xl": 2
},
"map_scale": {
"type": "number",
"label": "Quality of map (higher = better)",
"newLine": true,
"min": 1,
"max": 32,
"style": {
"width": "198px"
}
"xs": 12,
"sm": 12,
"md": 6,
"lg": 2,
"xl": 2
},
"webserverPort": {
"type": "port",
"label": "Webserver Port",
"newLine": true,
"style": {
"width": "198px"
}
"xs": 12,
"sm": 12,
"md": 6,
"lg": 2,
"xl": 2
},
"hostname_ip": {
"type": "text",
"label": "Hostname/IP for camera stream",
"newLine": true
"newLine": true,
"xs": 12,
"sm": 12,
"md": 12,
"lg": 12,
"xl": 12
},
"cameraPin": {
"type": "number",
"label": "PIN for streaming the camera",
"newLine": true
"newLine": true,
"xs": 12,
"sm": 12,
"md": 12,
"lg": 12,
"xl": 12
},
"downloadRoborockImages": {
"type": "checkbox",
"label": "Download Roborock Images",
"newLine": true
"newLine": true,
"xs": 12,
"sm": 12,
"md": 6,
"lg": 2,
"xl": 2
}
}
}
}