diff --git a/website/index.html b/website/index.html
index ff154a3..203ef9d 100644
--- a/website/index.html
+++ b/website/index.html
@@ -211,6 +211,7 @@
fwVersion, region, modemPreset, hasDefaultCh, onlineLocalNodes,
latitude, longitude, altitude, precision,
batteryLevel, voltage, chUtil, airUtilTx, uptime,
+ temperature, relativeHumidity, barometricPressure,
neighbors, seenBy
} = node
const id = `!${Number(nodeNum).toString(16)}`
@@ -239,6 +240,9 @@
${chUtil ? `
ChUtil | ${chUtil.toFixed(2)}% |
` : ''}
${airUtilTx ? `AirUtilTX | ${airUtilTx.toFixed(2)}% |
` : ''}
${uptime ? `Uptime | ${duration(uptime)} |
` : ''}
+ ${temperature ? `Temperature | ${temperature.toFixed(1)}℃ / ${(temperature * 1.8 + 32).toFixed(1)}℉ |
` : ''}
+ ${relativeHumidity ? `Relative Humidity | ${Math.round(relativeHumidity)}% |
` : ''}
+ ${barometricPressure ? `Barometric Pressure | ${Math.round(barometricPressure)} hPa |
` : ''}
${altitude ? `Altitude | ${altitude.toLocaleString()} m above MSL |
` : ''}
${precision && precisionMargins[precision-1] ?
`Location precision | ± ${precisionMargins[precision-1].toLocaleString()} m (orange circle) |
` : ''