Skip to content

Commit 40f527f

Browse files
committed
Print the SDS011 version date in the current values HTML
1 parent cd425e1 commit 40f527f

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

airrohr-firmware/Versions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ NRZ-2019-126-B6
44
* Discard power-on self-test dust sensor measurements
55
* Do not store WiFi station credentials in SDK protected flash
66
* Switch to ArduinoJson 6.13
7+
* show SDS011 manufacturing date in values HTML page
78

89
NRZ-2019-126-B5
910
* Rename Luftdaten.info to Sensors.Community everywhere

airrohr-firmware/airrohr-firmware.ino

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1888,6 +1888,7 @@ static void webserver_values() {
18881888
page_content += FPSTR(EMPTY_ROW);
18891889
add_table_row_from_value(page_content, FPSTR(SENSORS_SDS011), FPSTR(WEB_PM25), check_display_value(last_value_SDS_P2, -1, 1, 0), unit_PM);
18901890
add_table_row_from_value(page_content, FPSTR(SENSORS_SDS011), FPSTR(WEB_PM10), check_display_value(last_value_SDS_P1, -1, 1, 0), unit_PM);
1891+
add_table_row_from_value(page_content, FPSTR(SENSORS_SDS011), F("Version"), SDS_version_date(), emptyString);
18911892
}
18921893
if (cfg::pms_read) {
18931894
page_content += FPSTR(EMPTY_ROW);

0 commit comments

Comments
 (0)