diff --git a/src/components/widgets/thermals/TemperatureTargets.vue b/src/components/widgets/thermals/TemperatureTargets.vue index a9dd107a0b..0e6fc5773c 100644 --- a/src/components/widgets/thermals/TemperatureTargets.vue +++ b/src/components/widgets/thermals/TemperatureTargets.vue @@ -241,6 +241,38 @@     + + + + $fan + + + + + {{ item.prettyName }} + + + + + {{ item.intake_gas?.toFixed() ?? '-' }} > {{ item.exhaust_gas?.toFixed() ?? '-' }} +
{{ item.intake_temperature?.toFixed(1) ?? '-' }} > {{ item.exhaust_temperature?.toFixed(1) ?? '-' }} °C
+
{{ item.intake_humidity?.toFixed(1) ?? '-' }} > {{ item.exhaust_humidity?.toFixed(1) ?? '-' }} %
+
{{ item.intake_pressure?.toFixed(1) ?? '-' }} > {{ item.exhaust_pressure?.toFixed(1) ?? '-' }} hPa
+
{{ item.rpm }} RPM
+
+ +   +   + @@ -268,6 +300,10 @@ export default class TemperatureTargets extends Mixins(StateMixin) { return this.$store.getters['printer/getOutputs'](['temperature_fan']) } + get nevermore () { + return this.$store.getters['printer/getOutputs'](['nevermore']) + } + get sensors () { return this.$store.getters['printer/getSensors'] } @@ -379,6 +415,7 @@ export default class TemperatureTargets extends Mixins(StateMixin) { font-weight: 300; font-size: 1.125rem; white-space: nowrap; + text-align: right; } > thead > tr > th { diff --git a/src/store/printer/getters.ts b/src/store/printer/getters.ts index 8b2c0f5446..f0c01dd113 100644 --- a/src/store/printer/getters.ts +++ b/src/store/printer/getters.ts @@ -638,7 +638,8 @@ export const getters: GetterTree = { 'neopixel', 'dotstar', 'pca9533', - 'pca9632' + 'pca9632', + 'nevermore' ] const supportedTypes = (filter && filter.length) @@ -760,7 +761,6 @@ export const getters: GetterTree = { 'aht10', 'bme280', 'htu21d', - 'nevermoresensor', 'sht3x' ]