Hi guys. I made an automation to turn off the air conditioning LED after 5 seconds (rule valid only at night). In case you’re interested, the rule looks like this:
{
"name": "Switching off the air conditioning display",
"actions": [
{
"if": {
"and": [
{
"between": {
"value": {
"time": {
"reference": "Now"
}
},
"start": {
"time": {
"reference": "Sunset"
}
},
"end": {
"time": {
"reference": "Sunrise"
}
}
}
},
{
"equals": {
"left": {
"device": {
"devices": [
"my-ac-id"
],
"component": "main",
"capability": "samsungce.airConditionerLighting",
"attribute": "lighting"
}
},
"right": {
"string": "on"
}
}
}
],
"then": [
{
"sleep": {
"duration": {
"value": {
"integer": 5
},
"unit": "Second"
}
}
},
{
"command": {
"devices": [
"my-ac-id"
],
"commands": [
{
"component": "main",
"capability": "samsungce.airConditionerLighting",
"command": "off",
"arguments": []
}
]
}
}
]
}
}
]
}
With this automation, every time the LED comes on, after 5 seconds it goes off. I found this useful because, if I want to change the temperature in the middle of the night using the remote control, the LED will light up to indicate the new temperature, but it will off again in 5 seconds.
If you’re having trouble finding the ‘capability’ and ‘attribute’ related to your device’s LED, go to Samsung account, search for your device, scroll down to the list of attributes and search for ‘light’, you should see something like this:
Changing this attribute to on/off reflects on the air conditioning display, all I did was use it as a trigger, and whenever it goes on during the night, I set it to off again.