This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Make Background light up to simulate Lights ON
#4
Hi, I'm looking for something similar, but with variable opacity. I have a group address that represents the on/off state of a Dali lamp, "Status_on_off_bulb1 (1/1/1)". I also have another one that represents the intensity level of that lamp, "Status_value_bulb1 (1/1/2)". In the visualization, I add an object with the address (1/1/1) and represent its on state with a glowing bulb and its off state with an unlit bulb. This has worked so far.

Now I want to make a graphical improvement that represents the object's brightness level through its opacity. I've tried the following: I added a custom class called ".bulb-opacity" to the object, and using JavaScript, the program reads the brightness value (1/1/2) and applies the corresponding transparency to objects that contain the additional ".bulb-opacity" class.
The problem I'm having is that I would have to add additional classes to each bulb.

I'd like to know if it's possible to apply opacity to objects using JavaScript by their group address "1/1/1" or, better yet, by their label "Status_on_off_bulb1", setting the opacity value to the group address value "Status_value_bulb1(1/1/2)".

I'm attaching how I solved it with the additional class:

var ObjectAddress = Scada.encodeGroupAddress('1/1/2');
var minOpacityPercent = 40; // Minimum opacity percentage when the lamp is at minimum brightness (1/100)

objectStore.addListener(ObjectAddress, function(obj, type) {
    if (typeof obj.value === 'number') {
        var elements = document.querySelectorAll('.bulb-opacity');
        var value = obj.value;

        var opacity;

        if (value === 0) {
            // Lamp off → maximum opacity to clearly display the off icon
            opacity = 1; // I will review it soon
        } else {
            // Map value from 1–100 to opacity between minOpacityPercent–100%
            var min = minOpacityPercent / 100;
            opacity = min + (1 - min) * (value / 100);
        }

        elements.forEach(function(el) {
            el.style.setProperty('opacity', opacity.toString(), 'important');
        });
    }
});


Thanks in advance
Reply


Messages In This Thread
RE: Make Background light up to simulate Lights ON - by MarkosFerro - 04.04.2025, 14:29

Forum Jump: