-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[airq] Add support for mold and virus index #19446
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
Changes from 8 commits
2708aa8
dd6b5c9
f1a9a4b
8361d99
12a3087
80be499
6c1fad8
9ed881e
7c4f353
e1f4724
e8758a0
dfebdb7
df7bdfd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,6 +46,8 @@ | |
<channel id="timestamp" typeId="timestamp"/> | ||
<channel id="tvoc" typeId="tvoc"/> | ||
<channel id="uptime" typeId="uptime"/> | ||
<channel id="virus_free" typeId="virus_free"/> | ||
<channel id="mold_free" typeId="mold_free"/> | ||
|
||
<!-- Maximum error --> | ||
<channel id="fineDustCnt00_3_maxerr" typeId="cnt0_3_maxerr"/> | ||
|
@@ -71,6 +73,8 @@ | |
<channel id="sound_maxerr" typeId="sound_maxerr"/> | ||
<channel id="temperature_maxerr" typeId="temperature_maxerr"/> | ||
<channel id="tvoc_maxerr" typeId="tvoc_maxerr"/> | ||
<channel id="virus_free_maxerr" typeId="virus_free_maxerr"/> | ||
<channel id="mold_free_maxerr" typeId="mold_free_maxerr"/> | ||
Comment on lines
+76
to
+77
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These two are not added to the readme, not needed? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Until now, the MaxErr channels were not explicitly listed. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why not, PR welcome :) Right of the bat, I couldn't find any documentation what exactly the max error value means. I assume it is the tolerance to be expected under the current environmental conditions. |
||
|
||
<!-- configuration data --> | ||
<channel id="wifi" typeId="Wifi"/> | ||
|
@@ -120,7 +124,7 @@ | |
<property name="sensorList">Unknown sensor list</property> | ||
<property name="sensorInfo">No info about sensors</property> | ||
<property name="industry">No industry info</property> | ||
<property name="thingTypeVersion">2</property> | ||
<property name="thingTypeVersion">3</property> | ||
</properties> | ||
|
||
<config-description> | ||
|
@@ -348,6 +352,18 @@ | |
<state readOnly="true" pattern="%d %unit%"></state> | ||
</channel-type> | ||
|
||
<channel-type id="virus_free" advanced="false"> | ||
<item-type unitHint="%">Number:Dimensionless</item-type> | ||
<label>Virus-free Index</label> | ||
lsiepel marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
<state readOnly="true" pattern="%.2f %unit%"></state> | ||
</channel-type> | ||
|
||
<channel-type id="mold_free" advanced="false"> | ||
<item-type unitHint="%">Number:Dimensionless</item-type> | ||
<label>Mold-free Index</label> | ||
lsiepel marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
<state readOnly="true" pattern="%.2f %unit%"></state> | ||
</channel-type> | ||
|
||
<!-- Maximum error --> | ||
<channel-type id="cnt0_3_maxerr" advanced="true"> | ||
<item-type>Number:Dimensionless</item-type> | ||
|
@@ -487,6 +503,18 @@ | |
<state readOnly="true" pattern="± %.2f %%"></state> | ||
</channel-type> | ||
|
||
<channel-type id="virus_free_maxerr" advanced="true"> | ||
<item-type unitHint="%">Number:Dimensionless</item-type> | ||
<label>Max. Error Virus-free</label> | ||
lsiepel marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
<state readOnly="true" pattern="± %.2f %%"></state> | ||
</channel-type> | ||
|
||
<channel-type id="mold_free_maxerr" advanced="true"> | ||
<item-type unitHint="%">Number:Dimensionless</item-type> | ||
<label>Max. Error Mold-free</label> | ||
lsiepel marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
<state readOnly="true" pattern="± %.2f %%"></state> | ||
</channel-type> | ||
|
||
<!-- settings --> | ||
|
||
<channel-type id="Wifi" advanced="true"> | ||
|
Uh oh!
There was an error while loading. Please reload this page.