@mschaeffler/node-red-bthome 1.2.0 → 1.3.0
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 +1 -0
- package/bthome.html +2 -0
- package/bthome.js +15 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -34,6 +34,7 @@ $ npm install @mschaeffler/node-red-bthome
|
|
|
34
34
|
|msg. | type | description |
|
|
35
35
|
|:-------|:-------|:----------------------------------|
|
|
36
36
|
|payload | object | data from Shelly script|
|
|
37
|
+
|resync | boolean| if set to yes, allow all packed ids; to resync after some issue|
|
|
37
38
|
|
|
38
39
|
### msg.payload
|
|
39
40
|
|
package/bthome.html
CHANGED
|
@@ -123,6 +123,8 @@
|
|
|
123
123
|
<dl class="message-properties">
|
|
124
124
|
<dt>payload <span class="property-type">object</span></dt>
|
|
125
125
|
<dd> data from Shelly script</dd>
|
|
126
|
+
<dt>resync <span class="property-type">boolean</span></dt>
|
|
127
|
+
<dd> if set to yes, allow all packed ids; to resync after some issue</dd>
|
|
126
128
|
</dl>
|
|
127
129
|
|
|
128
130
|
<h4>msg.payload</h4>
|
package/bthome.js
CHANGED
|
@@ -59,7 +59,20 @@ module.exports = function(RED) {
|
|
|
59
59
|
}
|
|
60
60
|
|
|
61
61
|
node.on('input', function(msg,send,done) {
|
|
62
|
-
if(
|
|
62
|
+
if( msg.resync )
|
|
63
|
+
{
|
|
64
|
+
for( const t in node.data )
|
|
65
|
+
{
|
|
66
|
+
node.data[t].pid = null;
|
|
67
|
+
}
|
|
68
|
+
if( node.contextStore !== "none" )
|
|
69
|
+
{
|
|
70
|
+
node.flowcontext.set( node.contextVar, node.data, node.contextStore );
|
|
71
|
+
}
|
|
72
|
+
done();
|
|
73
|
+
return;
|
|
74
|
+
}
|
|
75
|
+
if( ! Array.isArray( msg.payload?.data ) )
|
|
63
76
|
{
|
|
64
77
|
node.statistics.err++;
|
|
65
78
|
done( "msg.payload.data must be an Array!" );
|
|
@@ -288,7 +301,7 @@ module.exports = function(RED) {
|
|
|
288
301
|
{
|
|
289
302
|
// veraltete Nachricht und nicht reboot
|
|
290
303
|
node.statistics.old++;
|
|
291
|
-
node.warn( `old ble message ${name}
|
|
304
|
+
node.warn( `old ble message ${name} dropped, ${pid} < ${item.pid}` );
|
|
292
305
|
return false;
|
|
293
306
|
}
|
|
294
307
|
if( msg.payload.gateway )
|