Replies: 2 comments
-
It looks like you have a space (“ “) instead of an underscore (“_”) for these fields
In otherwords try |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thanks for looking at it. It wasn’t that clear in the ssh terminal window.
From: Rich Bell ***@***.***>
Sent: Thursday, November 28, 2024 09:19
To: bellrichm/WeeWX-MQTTSubscribe ***@***.***>
Cc: pmendiuk ***@***.***>; Author ***@***.***>
Subject: Re: [bellrichm/WeeWX-MQTTSubscribe] Partial parsing of Tasmota SEN5x Data (Discussion #223)
It looks like you have a space (“ “) instead of an underscore (“_”) for these fields
[[[tele/AQ1/SENSOR]]]
[[[[SEN5X PM1]]]]
name = aqi1PM1
[[[[SEN5X PM2.5]]]]
name = aqi1PM2_5
[[[[SEN5X PM4]]]]
name = aqi1PM4
In otherwords try [[[[SEN5X_PM1]]]], [[[[SEN5X_PM2.5]]]], and [[[[SEN5X_PM4]]]]
—
Reply to this email directly, view it on GitHub <#223 (comment)> , or unsubscribe <https://github.com/notifications/unsubscribe-auth/ABYUWUCE5LSDGX6OOVSFJE32C5F73AVCNFSM6AAAAABST6JVBSVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTCNBQHA4DMMY> .
You are receiving this because you authored the thread. <https://github.com/notifications/beacon/ABYUWUE7C5OHOIRDXZHSZND2C5F73A5CNFSM6AAAAABST6JVBSWGG33NNVSW45C7OR4XAZNRIRUXGY3VONZWS33OINXW23LFNZ2KUY3PNVWWK3TUL5UWJTQAVYK56.gif> Message ID: ***@***.*** ***@***.***> >
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I previously had SEN5x data from Tasmota12.5 going into WeeWX through MQTT Subscribe without issue. We had a big wind storm and some of my ESP32 sensors did not survive the severe power glitches. I flashed another ESP32 with the latest version of Tasmota(14.3) and now I am only getting part of the SEN5x data. In my weeWX chart plots, there is no PM1, PM2.5, PM4 data. There are differences in the TopicManager data log entries.
Here is that topic captured by MQTT.fx:
tele/AQ1/SENSOR
{
"Time" : 1732750923,
"SEN5X" : {
"PM1" : 16.1,
"PM2.5" : 18.4,
"PM4" : 19.7,
"PM10" : 20.2,
"NOx" : 1,
"VOC" : 248,
"Temperature" : 19.6,
"Humidity" : 60.2,
"DewPoint" : 11.6,
"aHumidity" : 10.2735
},
"TempUnit" : "C"
}
Here are my weewx.conf entries for that topic:
Here are the journalctl log entries:
Nov 27 14:55:54 WeeWx1-debian12-vm python3[5392]: weewx[5392] DEBUG user.MQTTSubscribe: (Service) MessageCallbackProvider data-> incoming topic: tele/AQ1/SENSOR, QOS: 0, retain: 0, payload: b'{"Time":1732748153,"SEN5X":{"PM1":24.6,"PM2.5":28.3,"PM4":30.4,"PM10":31.3,"NOx":1,"VOC":298,"Temperature":19.8,"Humidity":59.3,"DewPoint":11.7,"aHumidity":10.2838},"TempUnit":"C"}'
Nov 27 14:55:54 WeeWx1-debian12-vm python3[5392]: weewx[5392] DEBUG user.MQTTSubscribe: (Service) TopicManager data-> incoming tele/AQ1/SENSOR: 'aqi1AHumidity': '10.2838', 'aqi1DewPoint': '11.7', 'aqi1Humidity': '59.3', 'aqi1NOX': '1.0', 'aqi1PM10': '31.3', 'aqi1Temperature': '19.8', 'aqi1VOC': '298.0', 'SEN5X_PM1': '24.6', 'SEN5X_PM2.5': '28.3', 'SEN5X_PM4': '30.4', 'Time': '1732748153.0'
Beta Was this translation helpful? Give feedback.
All reactions