use new mark feature to clean up fan settings
This commit is contained in:
parent
c298a58a47
commit
39c364c742
1 changed files with 12 additions and 14 deletions
|
|
@ -272,12 +272,6 @@ const config: Config = {
|
|||
text: "Automatik",
|
||||
icon: svg(icons.mdiAirConditioner)
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Zieltemperatur",
|
||||
icon: svg(icons.mdiTemperatureCelsius),
|
||||
topic: "fanBedroomTarget"
|
||||
},
|
||||
{
|
||||
type: "slider",
|
||||
min: 15,
|
||||
|
|
@ -285,7 +279,12 @@ const config: Config = {
|
|||
step: 0.1,
|
||||
text: "Zieltemperatur",
|
||||
icon: svg(icons.mdiOilTemperature),
|
||||
topic: "fanBedroomTarget"
|
||||
topic: "fanBedroomTarget",
|
||||
marks: [
|
||||
{ value: 15, label: "15°C" },
|
||||
{ value: 20, label: "20°C" },
|
||||
{ value: 25, label: "25°C" }
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
@ -324,12 +323,6 @@ const config: Config = {
|
|||
text: "Automatik",
|
||||
icon: svg(icons.mdiAirConditioner)
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Zieltemperatur",
|
||||
icon: svg(icons.mdiTemperatureCelsius),
|
||||
topic: "fanOfficeTarget"
|
||||
},
|
||||
{
|
||||
type: "slider",
|
||||
min: 15,
|
||||
|
|
@ -337,7 +330,12 @@ const config: Config = {
|
|||
step: 0.1,
|
||||
text: "Zieltemperatur",
|
||||
icon: svg(icons.mdiOilTemperature),
|
||||
topic: "fanOfficeTarget"
|
||||
topic: "fanOfficeTarget",
|
||||
marks: [
|
||||
{ value: 15, label: "15°C" },
|
||||
{ value: 20, label: "20°C" },
|
||||
{ value: 25, label: "25°C" }
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue