spacemanspiff2007
spacemanspiff2007
There is a difference how small values are reported between plain number items and UoM number items: Normal item ````json { "type": "ItemStateUpdatedEvent", "topic": "openhab/items/NumGAChpjf/stateupdated", "payload": {"type": "Decimal", "value": "0.000000000000000001"}...
Currently the `category` field of an item is used to configure the `icon` of the item. The field should be renamed to "icon" to better reflect what is actually happening....
Similar to #3605 Steps to reproduce: Create a fresh installation of 4.3.3 and install mapdb persistence. Observe that no standard persistence service is configured:  Create an item and post...
During the discussion of #4550 @kaikreuzer argued that using RegEx is not typically used in "the web". However openHAB API users already know how to use a RegexFilter when requesting...
Create item ```` Number ExpireItem {expire="asdf,OFF" } ```` Observe no warning/error in log: ```` [INFO ] [el.core.internal.ModelRepositoryImpl] - Loading model 'items.items' ```` 
Send this message but replace ``AAAAAA`` in payload with 129_702 x ``A`` and create proper json-in-json. (I can provide the proper message if necessary but imho it's trivial to create...
Send this message over websockets (forget json in json for payload) ````json { "topic":"openhab/websocket/filter/type", "source":"HABApp", "eventId":"WebsocketTypeFilterMsg", "type":"WebSocketEvent", "payload":["ChannelDescriptionChangedEvent","ChannelTriggeredEvent","ConfigStatusInfoEvent","FirmwareStatusInfoEvent","GroupItemStateChangedEvent","GroupStateUpdatedEvent","ItemAddedEvent","ItemCommandEvent","ItemRemovedEvent","ItemStateChangedEvent","ItemStateEvent","ItemStatePredictedEvent","ItemStateUpdatedEvent","ItemUpdatedEvent","ThingAddedEvent","ThingRemovedEvent","ThingStatusInfoChangedEvent","ThingStatusInfoEvent","ThingUpdatedEvent","WebSocketEvent"] ```` Receive this: ````json { "type":"WebSocketEvent", "topic":"openhab/websocket/response/failed", "payload":"Deserialization error: java.lang.IllegalStateException: Expected a...
I'd like to get all events except the `ItemStateEvent` (because with OH4 the `ItemStateUpdateEvent` is available). Currently the websocket filter works like a whitelist which means I have to know...
When a device sends a message with retain=True HABApp will automatically create an `MqttItem` for that Topic. However if the user wants a `MqttPairItem` this will raise an Error in...