diff options
author | K-J-Dod24 <kieran.dodson@complexus.uk> | 2023-05-10 11:19:20 +0100 |
---|---|---|
committer | K-J-Dod24 <kieran.dodson@complexus.uk> | 2023-05-10 11:19:20 +0100 |
commit | 797fef3ed402af9e2a9143b1dbf5ce94942455de (patch) | |
tree | 049078f444310cb4f7f75ba45606547fa34dca0a /modern/src/common/attributes/usePositionAttributes.js | |
parent | 024e3a7633feec4e55da8b41b9f67d3155a0b991 (diff) | |
download | trackermap-web-797fef3ed402af9e2a9143b1dbf5ce94942455de.tar.gz trackermap-web-797fef3ed402af9e2a9143b1dbf5ce94942455de.tar.bz2 trackermap-web-797fef3ed402af9e2a9143b1dbf5ce94942455de.zip |
io32 coolant temperature fix
Diffstat (limited to 'modern/src/common/attributes/usePositionAttributes.js')
-rw-r--r-- | modern/src/common/attributes/usePositionAttributes.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modern/src/common/attributes/usePositionAttributes.js b/modern/src/common/attributes/usePositionAttributes.js index a2fab896..90b14e76 100644 --- a/modern/src/common/attributes/usePositionAttributes.js +++ b/modern/src/common/attributes/usePositionAttributes.js @@ -196,6 +196,16 @@ export default (t) => useMemo(() => ({ name: `${t('positionOutput')} 4`, type: 'boolean', }, + coolantTemp: { + name: t('positionCoolantTemp'), + type: 'number', + dataType: 'celsius', + }, + engineTemp: { + name: t('positionEngineTemp'), + type: 'number', + dataType: 'celsius', + }, power: { name: t('positionPower'), type: 'number', |