-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
fix: System mode in Namron thermostat #8753
Conversation
…gbee-herdsman-converters into namron_edge_thermostat
…gbee-herdsman-converters into namron_edge_thermostat
What is incorrect here? |
The underscores doesn't go away like the rest |
No, if it should be fixed (I'm not sure) it should be fixed in the frontend. |
So i should not edit the file to be more like deviceFault: (args?: Partial<modernExtend.EnumLookupArgs>) =>
modernExtend.enumLookup({
name: 'fault',
cluster: 'hvacThermostat',
attribute: {ID: 0x8006, type: Zcl.DataType.ENUM8},
description: 'Device fault',
lookup: {
no_fault: 0,
over_current_error: 1,
over_heat_error: 2,
'built-in_sensor_error': 3,
air_sensor_error: 4,
floor_sensor_error: 5,
},
access: 'STATE_GET',
...args,
}), to: deviceFault: (args?: Partial<modernExtend.EnumLookupArgs>) =>
modernExtend.enumLookup({
name: 'fault',
cluster: 'hvacThermostat',
attribute: {ID: 0x8006, type: Zcl.DataType.ENUM8},
description: 'Device fault',
lookup: {
"No Fault": 0,
"Over current error": 1,
"Over heat error": 2,
"Built-in sensor error": 3,
"Air sensor error": 4,
"Floor sensor error": 5,
},
access: 'STATE_GET',
...args,
}), |
The convention is to have |
Thanks! |
I'm currently seeing some incorrect display of the values:

How do i solve this?
This is just one of the places