iobroker.devices 1.2.14 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -5
- package/admin/assets/index-BaeInhLO.js +845 -0
- package/admin/assets/index-pCeIEsc7.css +1 -0
- package/admin/assets/ioBrokerLogo-D4L_xR2G.png +0 -0
- package/admin/index_m.html +2 -2
- package/admin/tab.html +2 -2
- package/build/lib/DeviceManagement.js +618 -0
- package/build/lib/DeviceManagement.js.map +1 -0
- package/build/lib/WidgetsManagement.js +627 -0
- package/build/lib/WidgetsManagement.js.map +1 -0
- package/build/main.js +53 -0
- package/build/main.js.map +1 -0
- package/build/widget-utils/WidgetsManagement.js +121 -0
- package/build/widget-utils/WidgetsManagement.js.map +1 -0
- package/build/widget-utils/index.js +18 -0
- package/build/widget-utils/index.js.map +1 -0
- package/build/widget-utils/types/api.js +3 -0
- package/build/widget-utils/types/api.js.map +1 -0
- package/build/widget-utils/types/base.js +3 -0
- package/build/widget-utils/types/base.js.map +1 -0
- package/build/widget-utils/types/common.js +3 -0
- package/build/widget-utils/types/common.js.map +1 -0
- package/build/widget-utils/types/index.js +3 -0
- package/build/widget-utils/types/index.js.map +1 -0
- package/img/ioBrokerLogo.png +0 -0
- package/io-package.json +45 -17
- package/package.json +27 -14
- package/www/assets/index-CmwOqvIb.css +1 -0
- package/www/assets/index-lrSafi0L.js +748 -0
- package/www/assets/ioBrokerLogo-D4L_xR2G.png +0 -0
- package/www/devices.svg +26 -0
- package/www/favicon.ico +0 -0
- package/www/index.html +30 -0
- package/www/manifest.json +15 -0
- package/admin/assets/index-CKue6Ph0.css +0 -1
- package/admin/assets/index-vG62vYjI.js +0 -826
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ Manage and create devices for using it in other adapters like material, iot, mat
|
|
|
17
17
|
|
|
18
18
|

|
|
19
19
|
|
|
20
|
-
**This adapter uses Sentry libraries to automatically report exceptions and code errors to the developers.** For more details and for information how to disable the error reporting, see [Sentry-Plugin Documentation](https://github.com/ioBroker/plugin-sentry#plugin-sentry)! Sentry reporting is used starting with js-controller 3.0.
|
|
20
|
+
**This adapter uses Sentry libraries to automatically report exceptions and code errors to the developers.** For more details and for information on how to disable the error reporting, see [Sentry-Plugin Documentation](https://github.com/ioBroker/plugin-sentry#plugin-sentry)! Sentry reporting is used starting with js-controller 3.0.
|
|
21
21
|
|
|
22
22
|
## ioBroker.devices Adapter User Manual
|
|
23
23
|
|
|
@@ -46,14 +46,14 @@ The `ioBroker.devices` adapter serves the following purposes:
|
|
|
46
46
|
|
|
47
47
|
#### Standardization
|
|
48
48
|
Many adapters like mqtt, knx or similarly deliver data points with different names and structures. This adapter creates a virtual device with a consistent structure, making it easier to manage and visualize devices.
|
|
49
|
-
It adds
|
|
49
|
+
It adds automatic roles, units and names to the states.
|
|
50
50
|
|
|
51
51
|
#### Simplified Maintenance
|
|
52
52
|
The `ioBroker.devices` adapter allows users to create virtual devices that can be easily remapped to different physical devices.
|
|
53
53
|
This means that if you change a physical device, you don't need to update your scripts, visualizations or history settings; you just need to remap the data points in the adapter.
|
|
54
54
|
|
|
55
55
|
#### Enhanced Compatibility
|
|
56
|
-
The adapter knows
|
|
56
|
+
The adapter knows what the devices should look like and how to use them. It creates a virtual device with the same structure as the physical device, making it easier to integrate with other adapters.
|
|
57
57
|
|
|
58
58
|
#### User-Friendly
|
|
59
59
|
The `ioBroker.devices` adapter is designed to be user-friendly, making it accessible for beginners while still offering advanced features for experienced users. The intuitive interface allows users to create and manage virtual devices without needing extensive technical knowledge.
|
|
@@ -71,7 +71,7 @@ Open Devices Tab in admin.
|
|
|
71
71
|
- Click the "+" button to create a new virtual device.
|
|
72
72
|
- Enter a Name for the device (e.g., "LivingRoomLight").
|
|
73
73
|
- Select a Device Type (e.g., Light, Switch, Thermostat) from the predefined list.
|
|
74
|
-
- Optionally, assign a Category (e.g., Lighting, Heating) for organization.
|
|
74
|
+
- Optionally, assign a Category (e.g., Lighting, Heating) for the organization.
|
|
75
75
|
|
|
76
76
|
Map Data Points:
|
|
77
77
|
|
|
@@ -109,7 +109,7 @@ If you created e.g. a temperature device named `Temperature` and provided both s
|
|
|
109
109
|
|
|
110
110
|
Almost every device type could have additional states (indicators) for battery, connectivity, error and some more else. They are optional, but some adapters (e.g., `material` or `matter`) could interpret it.
|
|
111
111
|
|
|
112
|
-
For every state, you can provide all settings
|
|
112
|
+
For every state, you can provide all settings that aliases support:
|
|
113
113
|
- Different states for read and write
|
|
114
114
|
- Convert formula for read and write
|
|
115
115
|
|
|
@@ -123,11 +123,17 @@ Organize Devices: Use categories to group devices (e.g., "Lighting", "Heating")
|
|
|
123
123
|
## Type of devices
|
|
124
124
|
This adapter is built with the help of `type-detector`. All possible devices could be found [here](https://github.com/ioBroker/ioBroker.type-detector/blob/master/DEVICES.md)
|
|
125
125
|
|
|
126
|
+
## Video
|
|
127
|
+
[](https://www.youtube.com/watch?v=0Aecm5YAk7M)
|
|
128
|
+
|
|
126
129
|
## Changelog
|
|
127
130
|
<!--
|
|
128
131
|
Placeholder for the next version (at the beginning of the line):
|
|
129
132
|
### **WORK IN PROGRESS**
|
|
130
133
|
-->
|
|
134
|
+
### 2.0.3 (2026-03-24)
|
|
135
|
+
* (@GermanBluefox) Added widgets' visualisation. Now it is possible to create a GUI within the adapter
|
|
136
|
+
|
|
131
137
|
### 1.2.14 (2026-02-06)
|
|
132
138
|
* (@GermanBluefox) Correcting the scrolling on the touch devices
|
|
133
139
|
* (@GermanBluefox) Fixing a problem with `ACTUAL` state
|