.silent() seems not to work anymore  [Solved]

Easy to use, 100% Lua-based event scripting framework.

Moderator: leecollings

User avatar
waaren
Posts: 6028
Joined: Tuesday 03 January 2017 14:18
Target OS: Linux
Domoticz version: Beta
Location: Netherlands
Contact:

Re: .silent() seems not to work anymore

Post by waaren »

samourai47 wrote: Saturday 05 December 2020 9:09 It's the same configuration as used in the earlier question.
To identify the device and its behavior, can you execute below script once for every state (open, stop, close) and share the results (log) ?

Code: Select all

--[[
        script to identify device characteristics

        sqlite3 is required

        if you don't have sqlite3 yet on your system install it with sudo apt install sqlite3

        enter device ID and time you want to execute this script
]]

------------------------ Your settings below this line

local executionTime = '11:52' -- format 'hh:mm'
local deviceID = 3244

------------------------ No changes required below this line

return
{
    on =
    {
        timer =
        {
            'at ' .. executionTime, -- change to the time you want to dump the attributes of the device
        },
        devices =
        {
            deviceID,
        },
    },

    logging =
    {
        level = domoticz.LOG_DEBUG,
        marker = 'dumpAttributes',
    },

    execute = function(dz)
        local myDevice = dz.devices(deviceID)

        local sqlite = 'sudo sqlite3 '

        local function dumpAttributes()
            dz.log(myDevice.idx .. ': ' .. myDevice.name ,dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': attribute       -> value                 (dzVents)',dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name ,dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': type, subType   -> ' .. myDevice.deviceType .. ', '.. tostring(myDevice.deviceSubType),dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': switchTypeValue -> ' .. myDevice.switchTypeValue ,dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': adapters        -> ' .. dz.utils._.str(myDevice._adapters),dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': rawData         -> ' .. dz.utils._.str(myDevice.rawData),dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': hwType          -> ' .. myDevice.hardwareType .. ', ' .. myDevice.hardwareTypeValue,dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': levelNames      -> ' .. dz.utils._.str(myDevice.levelNames),dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': modes           -> ' .. dz.utils._.str(myDevice.modes),dz.LOG_FORCE)
        end

        local function dumpDeviceStatus()
            local sqlResult, result = dz.utils.osCommand(sqlite .. ' -header domoticz.db "select * from deviceStatus where id = ' .. myDevice.idx .. '"')
            if result ~= 0 then
                dz.log('Result: ' .. result, dz.LOG_ERROR)
            else
                sqlResult = dz.utils.stringSplit(sqlResult,'\n')
                local header = dz.utils.stringSplit(sqlResult[1],'|')
                local values = dz.utils.stringSplit(sqlResult[2],'|')
                dz.log(myDevice.idx .. ': ' .. myDevice.name ,dz.LOG_FORCE)
                dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': field           -> value             (database)',dz.LOG_FORCE)
                dz.log(myDevice.idx .. ': ' .. myDevice.name ,dz.LOG_FORCE)
                for index, attribute in ipairs(header) do
                    dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': ' .. dz.utils.rightPad(( attribute or '') ,15) .. ' -> ' .. ( values[index] or 'nil') ,dz.LOG_FORCE)
                end
            end
        end

        local function dumpVersions()
            dz.log(myDevice.idx .. ': ' .. myDevice.name ,dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': system          -> value                  (versions)',dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name ,dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': OS              -> ' .. dz.utils.osCommand('sudo uname -a'),dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': Domoticz        -> ' .. dz.settings.domoticzVersion,dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': Dzvents         -> ' .. dz.settings.dzVentsVersion,dz.LOG_FORCE)
        end

        dumpAttributes()
        dumpDeviceStatus()
        dumpVersions()
    end
}
Debian buster, bullseye on RPI-4, Intel NUC.
dz Beta, Z-Wave, RFLink, RFXtrx433e, P1, Youless, Hue, Yeelight, Xiaomi, MQTT
==>> dzVents wiki
samourai47
Posts: 50
Joined: Wednesday 06 March 2019 21:52
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: .silent() seems not to work anymore

Post by samourai47 »

First log with errors
I Open, Stopped, And Closed with the device 52 thant i want observe and change with the précedent script

Code: Select all

 2020-12-05 17:26:44.859 Error: dzVents: Error: (3.0.2) dumpAttributes: An error occurred when calling event handler Script #1
2020-12-05 17:26:44.859 Error: dzVents: Error: (3.0.2) dumpAttributes: ...domoticz/scripts/dzVents/generated_scripts/Script #1.lua:57: attempt to call a nil value (field 'osCommand')
2020-12-05 17:26:46.373 Error: dzVents: Error: (3.0.2) dumpAttributes: An error occurred when calling event handler Script #1
2020-12-05 17:26:46.373 Error: dzVents: Error: (3.0.2) dumpAttributes: ...domoticz/scripts/dzVents/generated_scripts/Script #1.lua:57: attempt to call a nil value (field 'osCommand')
2020-12-05 17:26:46.538 Error: dzVents: Error: (3.0.2) dumpAttributes: An error occurred when calling event handler Script #1
2020-12-05 17:26:46.538 Error: dzVents: Error: (3.0.2) dumpAttributes: ...domoticz/scripts/dzVents/generated_scripts/Script #1.lua:57: attempt to call a nil value (field 'osCommand')
2020-12-05 17:26:46.896 Error: dzVents: Error: (3.0.2) dumpAttributes: An error occurred when calling event handler Script #1
2020-12-05 17:26:46.896 Error: dzVents: Error: (3.0.2) dumpAttributes: ...domoticz/scripts/dzVents/generated_scripts/Script #1.lua:57: attempt to call a nil value (field 'osCommand')
2020-12-05 17:26:53.871 (Module Rfxcom) Temp (T° Chambre Marie)
2020-12-05 17:26:56.516 (Module Rfxcom) RFY (La Porte du Garage)
2020-12-05 17:26:56.667 Status: dzVents: Info: dumpAttributes: ------ Finished Script #1
2020-12-05 17:26:56.667 Error: dzVents: Error: (3.0.2) dumpAttributes: An error occurred when calling event handler Script #1
2020-12-05 17:26:56.667 Error: dzVents: Error: (3.0.2) dumpAttributes: ...domoticz/scripts/dzVents/generated_scripts/Script #1.lua:57: attempt to call a nil value (field 'osCommand')
2020-12-05 17:26:57.661 (Module Rfxcom) Temp (T° Chambre Parentale)
2020-12-05 17:27:00.340 Status: EventSystem: Script event triggered: Nouvelle Filtration 2
2020-12-05 17:27:04.611 (Xiaomi Gateway) Color Switch (Xiaomi RGB Gateway (192.168.0.25))
2020-12-05 17:27:04.623 (Xiaomi Gateway) Lux (Luminosité Gateway)
2020-12-05 17:27:04.818 Status: EventSystem: Script event triggered: Nouvelle Filtration 2
2020-12-05 17:27:06.458 (Temperature b1820) Temp (T° Bassin IN)
2020-12-05 17:27:06.645 Status: EventSystem: Script event triggered: Nouvelle Filtration 2
2020-12-05 17:27:11.902 (Module Rfxcom) RFY (La Porte du Garage)
2020-12-05 17:27:11.897 Status: User: Admin initiated a switch command (52/La Porte du Garage/On)
2020-12-05 17:27:12.047 Status: dzVents: Info: Handling events for: "La Porte du Garage", value: "Closed"
2020-12-05 17:27:12.047 Status: dzVents: Info: dumpAttributes: ------ Start internal script: Script #1: Device: "La Porte du Garage (Module Rfxcom)", Index: 52
2020-12-05 17:27:12.047 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 17:27:12.047 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: attribute -> value (dzVents)
2020-12-05 17:27:12.047 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 17:27:12.047 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: type, subType -> RFY, RFY
2020-12-05 17:27:12.047 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: switchTypeValue -> 3
2020-12-05 17:27:12.048 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: adapters -> {"Switch device adapter"}
2020-12-05 17:27:12.048 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: rawData -> {}
2020-12-05 17:27:12.048 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: hwType -> RFXCOM - RFXtrx433 USB 433.92MHz Transceiver, 1
2020-12-05 17:27:12.048 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: levelNames -> nil
2020-12-05 17:27:12.048 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: modes -> nil
2020-12-05 17:27:12.048 Status: dzVents: Info: dumpAttributes: ------ Finished Script #1
2020-12-05 17:27:12.076 Status: EventSystem: Script event triggered: Nouvelle Filtration 2
2020-12-05 17:27:12.048 Error: dzVents: Error: (3.0.2) dumpAttributes: An error occurred when calling event handler Script #1
2020-12-05 17:27:12.048 Error: dzVents: Error: (3.0.2) dumpAttributes: ...domoticz/scripts/dzVents/generated_scripts/Script #1.lua:57: attempt to call a nil value (field 'osCommand')
2020-12-05 17:27:18.569 (Xiaomi Gateway) Color Switch (Xiaomi RGB Gateway (192.168.0.25))
2020-12-05 17:27:18.581 (Xiaomi Gateway) Lux (Luminosité Gateway)
2020-12-05 17:27:18.861 Status: EventSystem: Script event triggered: Nouvelle Filtration 2
2020-12-05 17:27:24.785 Status: dzVents: Info: Handling events for: "Porte Garage Sensor", value: "Closed"
2020-12-05 17:27:24.786 Status: dzVents: Info: quiet gate: ------ Start internal script: Controle sensor garage: Device: "Porte Garage Sensor (Conbee)", Index: 148
2020-12-05 17:27:24.787 Status: dzVents: Debug: quiet gate: Processing device-adapter for La Porte du Garage: Switch device adapter
2020-12-05 17:27:24.787 Status: dzVents: Debug: quiet gate: State of Porte Garage Sensor is Closed
2020-12-05 17:27:24.787 Status: dzVents: Debug: quiet gate: OpenURL: url = http://127.0.0.1:8080/json.htm?type=command&param=udevice&nvalue=0&svalue=0&idx=52
2020-12-05 17:27:24.787 Status: dzVents: Debug: quiet gate: OpenURL: method = GET
2020-12-05 17:27:24.787 Status: dzVents: Debug: quiet gate: OpenURL: post data = nil
2020-12-05 17:27:24.787 Status: dzVents: Debug: quiet gate: OpenURL: headers = nil
2020-12-05 17:27:24.787 Status: dzVents: Debug: quiet gate: OpenURL: callback = nil
2020-12-05 17:27:24.788 Status: dzVents: Info: quiet gate: ------ Finished Controle sensor garage
2020-12-05 17:27:24.788 Status: EventSystem: Script event triggered: /home/pi/domoticz/dzVents/runtime/dzVents.lua
2020-12-05 17:27:24.815 Status: EventSystem: Script event triggered: Nouvelle Filtration 2
2020-12-05 17:27:24.946 Status: dzVents: Info: Handling events for: "La Porte du Garage", value: "Stopped"
2020-12-05 17:27:24.946 Status: dzVents: Info: dumpAttributes: ------ Start internal script: Script #1: Device: "La Porte du Garage (Module Rfxcom)", Index: 52
2020-12-05 17:27:24.946 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 17:27:24.946 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: attribute -> value (dzVents)
2020-12-05 17:27:24.946 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 17:27:24.946 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: type, subType -> RFY, RFY
2020-12-05 17:27:24.947 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: switchTypeValue -> 3
2020-12-05 17:27:24.947 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: adapters -> {"Switch device adapter"}
2020-12-05 17:27:24.947 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: rawData -> {"0"}
2020-12-05 17:27:24.947 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: hwType -> RFXCOM - RFXtrx433 USB 433.92MHz Transceiver, 1
2020-12-05 17:27:24.947 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: levelNames -> nil
2020-12-05 17:27:24.947 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: modes -> nil
2020-12-05 17:27:24.947 Status: dzVents: Info: dumpAttributes: ------ Finished Script #1
2020-12-05 17:27:24.973 Status: EventSystem: Script event triggered: Nouvelle Filtration 2
2020-12-05 17:27:24.947 Error: dzVents: Error: (3.0.2) dumpAttributes: An error occurred when calling event handler Script #1
2020-12-05 17:27:24.947 Error: dzVents: Error: (3.0.2) dumpAttributes: ...domoticz/scripts/dzVents/generated_scripts/Script #1.lua:57: attempt to call a nil value (field 'osCommand')
2020-12-05 17:27:25.290 Status: dzVents: Info: Handling events for: "Porte Garage Sensor", value: "Open"
2020-12-05 17:27:25.291 Status: dzVents: Info: quiet gate: ------ Start internal script: Controle sensor garage: Device: "Porte Garage Sensor (Conbee)", Index: 148
2020-12-05 17:27:25.293 Status: dzVents: Debug: quiet gate: Processing device-adapter for La Porte du Garage: Switch device adapter
2020-12-05 17:27:25.293 Status: dzVents: Debug: quiet gate: State of Porte Garage Sensor is Open
2020-12-05 17:27:25.293 Status: dzVents: Debug: quiet gate: OpenURL: url = http://127.0.0.1:8080/json.htm?type=command&param=udevice&nvalue=1&svalue=1&idx=52
2020-12-05 17:27:25.293 Status: dzVents: Debug: quiet gate: OpenURL: method = GET
2020-12-05 17:27:25.293 Status: dzVents: Debug: quiet gate: OpenURL: post data = nil
2020-12-05 17:27:25.293 Status: dzVents: Debug: quiet gate: OpenURL: headers = nil
2020-12-05 17:27:25.293 Status: dzVents: Debug: quiet gate: OpenURL: callback = nil
2020-12-05 17:27:25.294 Status: dzVents: Info: quiet gate: ------ Finished Controle sensor garage
2020-12-05 17:27:25.295 Status: EventSystem: Script event triggered: /home/pi/domoticz/dzVents/runtime/dzVents.lua
2020-12-05 17:27:25.327 Status: EventSystem: Script event triggered: Nouvelle Filtration 2
2020-12-05 17:27:25.449 Status: dzVents: Info: Handling events for: "La Porte du Garage", value: "Open"
2020-12-05 17:27:25.450 Status: dzVents: Info: dumpAttributes: ------ Start internal script: Script #1: Device: "La Porte du Garage (Module Rfxcom)", Index: 52
2020-12-05 17:27:25.450 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 17:27:25.450 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: attribute -> value (dzVents)
2020-12-05 17:27:25.450 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 17:27:25.450 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: type, subType -> RFY, RFY
2020-12-05 17:27:25.450 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: switchTypeValue -> 3
2020-12-05 17:27:25.450 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: adapters -> {"Switch device adapter"}
2020-12-05 17:27:25.450 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: rawData -> {"1"}
2020-12-05 17:27:25.450 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: hwType -> RFXCOM - RFXtrx433 USB 433.92MHz Transceiver, 1
2020-12-05 17:27:25.450 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: levelNames -> nil
2020-12-05 17:27:25.450 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: modes -> nil
2020-12-05 17:27:25.450 Status: dzVents: Info: dumpAttributes: ------ Finished Script #1
2020-12-05 17:27:25.452 Status: dzVents: Info: Handling events for: "Porte Garage Sensor", value: "Closed"
2020-12-05 17:27:25.452 Status: dzVents: Info: quiet gate: ------ Start internal script: Controle sensor garage: Device: "Porte Garage Sensor (Conbee)", Index: 148
2020-12-05 17:27:25.452 Status: dzVents: Debug: quiet gate: State of Porte Garage Sensor is Closed
2020-12-05 17:27:25.452 Status: dzVents: Debug: quiet gate: OpenURL: url = http://127.0.0.1:8080/json.htm?type=command&param=udevice&nvalue=0&svalue=0&idx=52
2020-12-05 17:27:25.452 Status: dzVents: Debug: quiet gate: OpenURL: method = GET
2020-12-05 17:27:25.452 Status: dzVents: Debug: quiet gate: OpenURL: post data = nil
2020-12-05 17:27:25.452 Status: dzVents: Debug: quiet gate: OpenURL: headers = nil
2020-12-05 17:27:25.452 Status: dzVents: Debug: quiet gate: OpenURL: callback = nil
2020-12-05 17:27:25.452 Status: dzVents: Info: quiet gate: ------ Finished Controle sensor garage
2020-12-05 17:27:25.453 Status: EventSystem: Script event triggered: /home/pi/domoticz/dzVents/runtime/dzVents.lua
2020-12-05 17:27:25.492 Status: EventSystem: Script event triggered: Nouvelle Filtration 2
2020-12-05 17:27:25.526 Status: EventSystem: Script event triggered: Nouvelle Filtration 2
2020-12-05 17:27:25.678 Status: dzVents: Info: Handling events for: "La Porte du Garage", value: "Stopped"
2020-12-05 17:27:25.678 Status: dzVents: Info: dumpAttributes: ------ Start internal script: Script #1: Device: "La Porte du Garage (Module Rfxcom)", Index: 52
2020-12-05 17:27:25.678 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 17:27:25.678 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: attribute -> value (dzVents)
2020-12-05 17:27:25.678 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 17:27:25.678 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: type, subType -> RFY, RFY
2020-12-05 17:27:25.678 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: switchTypeValue -> 3
2020-12-05 17:27:25.678 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: adapters -> {"Switch device adapter"}
2020-12-05 17:27:25.678 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: rawData -> {"0"}
2020-12-05 17:27:25.678 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: hwType -> RFXCOM - RFXtrx433 USB 433.92MHz Transceiver, 1
2020-12-05 17:27:25.678 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: levelNames -> nil
2020-12-05 17:27:25.678 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: modes -> nil
2020-12-05 17:27:25.679 Status: dzVents: Info: dumpAttributes: ------ Finished Script #1
2020-12-05 17:27:25.706 Status: EventSystem: Script event triggered: Nouvelle Filtration 2
2020-12-05 17:27:25.450 Error: dzVents: Error: (3.0.2) dumpAttributes: An error occurred when calling event handler Script #1
2020-12-05 17:27:25.450 Error: dzVents: Error: (3.0.2) dumpAttributes: ...domoticz/scripts/dzVents/generated_scripts/Script #1.lua:57: attempt to call a nil value (field 'osCommand')
2020-12-05 17:27:25.678 Error: dzVents: Error: (3.0.2) dumpAttributes: An error occurred when calling event handler Script #1
2020-12-05 17:27:25.679 Error: dzVents: Error: (3.0.2) dumpAttributes: ...domoticz/scripts/dzVents/generated_scripts/Script #1.lua:57: attempt to call a nil value (field 'osCommand') 
samourai47
Posts: 50
Joined: Wednesday 06 March 2019 21:52
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: .silent() seems not to work anymore

Post by samourai47 »

Second logs
I open, Stopped and closed with the telecommande

Code: Select all

 2020-12-05 17:32:00.365 Error: dzVents: Error: (3.0.2) dumpAttributes: An error occurred when calling event handler Script #1
2020-12-05 17:32:00.365 Error: dzVents: Error: (3.0.2) dumpAttributes: ...domoticz/scripts/dzVents/generated_scripts/Script #1.lua:57: attempt to call a nil value (field 'osCommand')
2020-12-05 17:32:06.483 (Temperature b1820) Temp (T° Bassin IN)
2020-12-05 17:32:09.653 (Module Rfxcom) Temp (T° Chambre Parentale)
2020-12-05 17:32:12.748 (Xiaomi Gateway) Lux (Aqara Motion Sensor)
2020-12-05 17:32:12.755 (Xiaomi Gateway) Light/Switch (Capteur presence Lumière entree)
2020-12-05 17:32:15.875 Status: dzVents: Debug: quiet gate: OpenURL: method = GET
2020-12-05 17:32:15.875 Status: dzVents: Debug: quiet gate: OpenURL: post data = nil
2020-12-05 17:32:15.875 Status: dzVents: Debug: quiet gate: OpenURL: headers = nil
2020-12-05 17:32:15.875 Status: dzVents: Debug: quiet gate: OpenURL: callback = nil
2020-12-05 17:32:15.876 Status: dzVents: Info: quiet gate: ------ Finished Controle sensor garage
2020-12-05 17:32:15.876 Status: EventSystem: Script event triggered: /home/pi/domoticz/dzVents/runtime/dzVents.lua
2020-12-05 17:32:15.909 Status: EventSystem: Script event triggered: Nouvelle Filtration 2
2020-12-05 17:32:16.030 Status: dzVents: Info: Handling events for: "La Porte du Garage", value: "Open"
2020-12-05 17:32:16.030 Status: dzVents: Info: dumpAttributes: ------ Start internal script: Script #1: Device: "La Porte du Garage (Module Rfxcom)", Index: 52
2020-12-05 17:32:16.030 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 17:32:16.030 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: attribute -> value (dzVents)
2020-12-05 17:32:16.030 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 17:32:16.030 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: type, subType -> RFY, RFY
2020-12-05 17:32:16.030 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: switchTypeValue -> 3
2020-12-05 17:32:16.030 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: adapters -> {"Switch device adapter"}
2020-12-05 17:32:16.030 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: rawData -> {"1"}
2020-12-05 17:32:16.030 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: hwType -> RFXCOM - RFXtrx433 USB 433.92MHz Transceiver, 1
2020-12-05 17:32:16.031 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: levelNames -> nil
2020-12-05 17:32:16.031 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: modes -> nil
2020-12-05 17:32:16.031 Status: dzVents: Info: dumpAttributes: ------ Finished Script #1
2020-12-05 17:32:16.032 Status: dzVents: Info: Handling events for: "Porte Garage Sensor", value: "Closed"
2020-12-05 17:32:16.032 Status: dzVents: Info: quiet gate: ------ Start internal script: Controle sensor garage: Device: "Porte Garage Sensor (Conbee)", Index: 148
2020-12-05 17:32:16.032 Status: dzVents: Debug: quiet gate: State of Porte Garage Sensor is Closed
2020-12-05 17:32:16.032 Status: dzVents: Debug: quiet gate: OpenURL: url = http://127.0.0.1:8080/json.htm?type=command&param=udevice&nvalue=0&svalue=0&idx=52
2020-12-05 17:32:16.032 Status: dzVents: Debug: quiet gate: OpenURL: method = GET
2020-12-05 17:32:16.032 Status: dzVents: Debug: quiet gate: OpenURL: post data = nil
2020-12-05 17:32:16.032 Status: dzVents: Debug: quiet gate: OpenURL: headers = nil
2020-12-05 17:32:16.033 Status: dzVents: Debug: quiet gate: OpenURL: callback = nil
2020-12-05 17:32:16.033 Status: dzVents: Info: quiet gate: ------ Finished Controle sensor garage
2020-12-05 17:32:16.034 Status: EventSystem: Script event triggered: /home/pi/domoticz/dzVents/runtime/dzVents.lua
2020-12-05 17:32:16.061 Status: EventSystem: Script event triggered: Nouvelle Filtration 2
2020-12-05 17:32:16.092 Status: EventSystem: Script event triggered: Nouvelle Filtration 2
2020-12-05 17:32:16.211 Status: dzVents: Info: Handling events for: "La Porte du Garage", value: "Stopped"
2020-12-05 17:32:16.211 Status: dzVents: Info: dumpAttributes: ------ Start internal script: Script #1: Device: "La Porte du Garage (Module Rfxcom)", Index: 52
2020-12-05 17:32:16.211 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 17:32:16.211 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: attribute -> value (dzVents)
2020-12-05 17:32:16.211 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 17:32:16.211 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: type, subType -> RFY, RFY
2020-12-05 17:32:16.211 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: switchTypeValue -> 3
2020-12-05 17:32:16.211 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: adapters -> {"Switch device adapter"}
2020-12-05 17:32:16.211 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: rawData -> {"0"}
2020-12-05 17:32:16.212 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: hwType -> RFXCOM - RFXtrx433 USB 433.92MHz Transceiver, 1
2020-12-05 17:32:16.212 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: levelNames -> nil
2020-12-05 17:32:16.212 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: modes -> nil
2020-12-05 17:32:16.212 Status: dzVents: Info: dumpAttributes: ------ Finished Script #1
2020-12-05 17:32:16.242 Status: EventSystem: Script event triggered: Nouvelle Filtration 2
2020-12-05 17:32:16.031 Error: dzVents: Error: (3.0.2) dumpAttributes: An error occurred when calling event handler Script #1
2020-12-05 17:32:16.031 Error: dzVents: Error: (3.0.2) dumpAttributes: ...domoticz/scripts/dzVents/generated_scripts/Script #1.lua:57: attempt to call a nil value (field 'osCommand')
2020-12-05 17:32:16.212 Error: dzVents: Error: (3.0.2) dumpAttributes: An error occurred when calling event handler Script #1
2020-12-05 17:32:16.212 Error: dzVents: Error: (3.0.2) dumpAttributes: ...domoticz/scripts/dzVents/generated_scripts/Script #1.lua:57: attempt to call a nil value (field 'osCommand')
2020-12-05 17:32:17.205 Status: dzVents: Info: Handling events for: "Porte Garage Sensor", value: "Open"
2020-12-05 17:32:17.205 Status: dzVents: Info: quiet gate: ------ Start internal script: Controle sensor garage: Device: "Porte Garage Sensor (Conbee)", Index: 148
2020-12-05 17:32:17.207 Status: dzVents: Debug: quiet gate: Processing device-adapter for La Porte du Garage: Switch device adapter
2020-12-05 17:32:17.207 Status: dzVents: Debug: quiet gate: State of Porte Garage Sensor is Open
2020-12-05 17:32:17.207 Status: dzVents: Debug: quiet gate: OpenURL: url = http://127.0.0.1:8080/json.htm?type=command&param=udevice&nvalue=1&svalue=1&idx=52
2020-12-05 17:32:17.207 Status: dzVents: Debug: quiet gate: OpenURL: method = GET
2020-12-05 17:32:17.207 Status: dzVents: Debug: quiet gate: OpenURL: post data = nil
2020-12-05 17:32:17.207 Status: dzVents: Debug: quiet gate: OpenURL: headers = nil
2020-12-05 17:32:17.207 Status: dzVents: Debug: quiet gate: OpenURL: callback = nil
2020-12-05 17:32:17.207 Status: dzVents: Info: quiet gate: ------ Finished Controle sensor garage
2020-12-05 17:32:17.208 Status: EventSystem: Script event triggered: /home/pi/domoticz/dzVents/runtime/dzVents.lua
2020-12-05 17:32:17.245 Status: EventSystem: Script event triggered: Nouvelle Filtration 2
2020-12-05 17:32:17.364 Status: dzVents: Info: Handling events for: "La Porte du Garage", value: "Open"
2020-12-05 17:32:17.364 Status: dzVents: Info: dumpAttributes: ------ Start internal script: Script #1: Device: "La Porte du Garage (Module Rfxcom)", Index: 52
2020-12-05 17:32:17.364 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 17:32:17.364 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: attribute -> value (dzVents)
2020-12-05 17:32:17.364 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 17:32:17.364 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: type, subType -> RFY, RFY
2020-12-05 17:32:17.364 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: switchTypeValue -> 3
2020-12-05 17:32:17.364 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: adapters -> {"Switch device adapter"}
2020-12-05 17:32:17.364 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: rawData -> {"1"}
2020-12-05 17:32:17.364 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: hwType -> RFXCOM - RFXtrx433 USB 433.92MHz Transceiver, 1
2020-12-05 17:32:17.364 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: levelNames -> nil
2020-12-05 17:32:17.364 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: modes -> nil
2020-12-05 17:32:17.365 Status: dzVents: Info: dumpAttributes: ------ Finished Script #1
2020-12-05 17:32:17.392 Status: EventSystem: Script event triggered: Nouvelle Filtration 2
2020-12-05 17:32:17.364 Error: dzVents: Error: (3.0.2) dumpAttributes: An error occurred when calling event handler Script #1
2020-12-05 17:32:17.364 Error: dzVents: Error: (3.0.2) dumpAttributes: ...domoticz/scripts/dzVents/generated_scripts/Script #1.lua:57: attempt to call a nil value (field 'osCommand')
2020-12-05 17:32:34.518 Status: dzVents: Info: Handling events for: "Porte Garage Sensor", value: "Closed"
2020-12-05 17:32:34.518 Status: dzVents: Info: quiet gate: ------ Start internal script: Controle sensor garage: Device: "Porte Garage Sensor (Conbee)", Index: 148
2020-12-05 17:32:34.519 Status: dzVents: Debug: quiet gate: Processing device-adapter for La Porte du Garage: Switch device adapter
2020-12-05 17:32:34.519 Status: dzVents: Debug: quiet gate: State of Porte Garage Sensor is Closed
2020-12-05 17:32:34.519 Status: dzVents: Debug: quiet gate: OpenURL: url = http://127.0.0.1:8080/json.htm?type=command&param=udevice&nvalue=0&svalue=0&idx=52
2020-12-05 17:32:34.519 Status: dzVents: Debug: quiet gate: OpenURL: method = GET
2020-12-05 17:32:34.519 Status: dzVents: Debug: quiet gate: OpenURL: post data = nil
2020-12-05 17:32:34.519 Status: dzVents: Debug: quiet gate: OpenURL: headers = nil
2020-12-05 17:32:34.519 Status: dzVents: Debug: quiet gate: OpenURL: callback = nil
2020-12-05 17:32:34.520 Status: dzVents: Info: quiet gate: ------ Finished Controle sensor garage
2020-12-05 17:32:34.521 Status: EventSystem: Script event triggered: /home/pi/domoticz/dzVents/runtime/dzVents.lua
2020-12-05 17:32:34.548 Status: EventSystem: Script event triggered: Nouvelle Filtration 2
2020-12-05 17:32:34.728 Status: dzVents: Info: Handling events for: "La Porte du Garage", value: "Stopped"
2020-12-05 17:32:34.728 Status: dzVents: Info: dumpAttributes: ------ Start internal script: Script #1: Device: "La Porte du Garage (Module Rfxcom)", Index: 52
2020-12-05 17:32:34.728 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 17:32:34.728 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: attribute -> value (dzVents)
2020-12-05 17:32:34.728 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 17:32:34.728 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: type, subType -> RFY, RFY
2020-12-05 17:32:34.728 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: switchTypeValue -> 3
2020-12-05 17:32:34.728 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: adapters -> {"Switch device adapter"}
2020-12-05 17:32:34.728 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: rawData -> {"0"}
2020-12-05 17:32:34.728 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: hwType -> RFXCOM - RFXtrx433 USB 433.92MHz Transceiver, 1
2020-12-05 17:32:34.728 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: levelNames -> nil
2020-12-05 17:32:34.728 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: modes -> nil
2020-12-05 17:32:34.728 Status: dzVents: Info: dumpAttributes: ------ Finished Script #1
2020-12-05 17:32:34.756 Status: EventSystem: Script event triggered: Nouvelle Filtration 2
2020-12-05 17:32:34.728 Error: dzVents: Error: (3.0.2) dumpAttributes: An error occurred when calling event handler Script #1
2020-12-05 17:32:34.728 Error: dzVents: Error: (3.0.2) dumpAttributes: ...domoticz/scripts/dzVents/generated_scripts/Script #1.lua:57: attempt to call a nil value (field 'osCommand') 
For the 2 logs, my door sensor was active and change th state of the device 52. But not good with the telecommande when i close
User avatar
waaren
Posts: 6028
Joined: Tuesday 03 January 2017 14:18
Target OS: Linux
Domoticz version: Beta
Location: Netherlands
Contact:

Re: .silent() seems not to work anymore

Post by waaren »

samourai47 wrote: Saturday 05 December 2020 17:36 Second logs
I open, Stopped and closed with the telecommande

Code: Select all

2020-12-05 17:32:34.728 Error: dzVents: Error: (3.0.2) dumpAttributes: An error occurred when calling event handler Script #1
2020-12-05 17:32:34.728 Error: dzVents: Error: (3.0.2) dumpAttributes: ...domoticz/scripts/dzVents/generated_scripts/Script #1.lua:57: attempt to call a nil value (field 'osCommand') 
In your dzVents version (3.0.2) the osCommand function was not part of dz.utils yet. Can you do it again with this modified identification script where I added dz.utils.osCommand locally?

Code: Select all

--[[
        script to identify device characteristics

        sqlite3 is required

        if you don't have sqlite3 yet on your system install it with sudo apt install sqlite3

        enter device ID and time you want to execute this script
]]

------------------------ Your settings below this line

local executionTime = '20:51' -- format 'hh:mm'
local deviceID = 296

------------------------ No changes required below this line

return
{
    on =
    {
        timer =
        {
            'at ' .. executionTime, -- change to the time you want to dump the attributes of the device
        },
        devices =
        {
            deviceID,
        },
    },

    logging =
    {
        level = domoticz.LOG_DEBUG,
        marker = 'dumpAttributes',
    },

    execute = function(dz)
        local myDevice = dz.devices(deviceID)

        local sqlite = 'sudo sqlite3 '

        function dz.utils.osCommand(cmd)
            local file = assert ( io.popen(cmd) )
            local output = assert ( file:read('*all') )
            local rc = { file:close() }
            return output, rc[3]
        end

        local function dumpAttributes()
            dz.log(myDevice.idx .. ': ' .. myDevice.name ,dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': attribute       -> value                 (dzVents)',dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name ,dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': type, subType   -> ' .. myDevice.deviceType .. ', '.. tostring(myDevice.deviceSubType),dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': switchTypeValue -> ' .. myDevice.switchTypeValue ,dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': adapters        -> ' .. dz.utils._.str(myDevice._adapters),dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': rawData         -> ' .. dz.utils._.str(myDevice.rawData),dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': hwType          -> ' .. myDevice.hardwareType .. ', ' .. myDevice.hardwareTypeValue,dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': levelNames      -> ' .. dz.utils._.str(myDevice.levelNames),dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': modes           -> ' .. dz.utils._.str(myDevice.modes),dz.LOG_FORCE)
        end

        local function dumpDeviceStatus()
            local sqlResult, result = dz.utils.osCommand(sqlite .. ' -header domoticz.db "select * from deviceStatus where id = ' .. myDevice.idx .. '"')
            if result ~= 0 then
                dz.log('Result: ' .. result, dz.LOG_ERROR)
            else
                sqlResult = dz.utils.stringSplit(sqlResult,'\n')
                local header = dz.utils.stringSplit(sqlResult[1],'|')
                local values = dz.utils.stringSplit(sqlResult[2],'|')
                dz.log(myDevice.idx .. ': ' .. myDevice.name ,dz.LOG_FORCE)
                dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': field           -> value             (database)',dz.LOG_FORCE)
                dz.log(myDevice.idx .. ': ' .. myDevice.name ,dz.LOG_FORCE)
                for index, attribute in ipairs(header) do
                    dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': ' .. dz.utils.rightPad(( attribute or '') ,15) .. ' -> ' .. ( values[index] or 'nil') ,dz.LOG_FORCE)
                end
            end
        end

        local function dumpVersions()
            dz.log(myDevice.idx .. ': ' .. myDevice.name ,dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': system          -> value                  (versions)',dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name ,dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': OS              -> ' .. dz.utils.osCommand('sudo uname -a'),dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': Domoticz        -> ' .. dz.settings.domoticzVersion,dz.LOG_FORCE)
            dz.log(myDevice.idx .. ': ' .. myDevice.name .. ': Dzvents         -> ' .. dz.settings.dzVentsVersion,dz.LOG_FORCE)
        end

        dumpAttributes()
        dumpDeviceStatus()
        dumpVersions()
    end
}
Debian buster, bullseye on RPI-4, Intel NUC.
dz Beta, Z-Wave, RFLink, RFXtrx433e, P1, Youless, Hue, Yeelight, Xiaomi, MQTT
==>> dzVents wiki
samourai47
Posts: 50
Joined: Wednesday 06 March 2019 21:52
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: .silent() seems not to work anymore

Post by samourai47 »

here the first log (same descrition as erlier)

Code: Select all

 2020-12-05 22:36:39.750 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: HardwareID -> 6
2020-12-05 22:36:39.750 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: DeviceID -> 000203
2020-12-05 22:36:39.750 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Unit -> 1
2020-12-05 22:36:39.750 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Name -> La Porte du Garage
2020-12-05 22:36:39.750 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Used -> 1
2020-12-05 22:36:39.750 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Type -> 26
2020-12-05 22:36:39.750 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SubType -> 0
2020-12-05 22:36:39.750 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SwitchType -> 3
2020-12-05 22:36:39.750 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Favorite -> 1
2020-12-05 22:36:39.750 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SignalLevel -> 12
2020-12-05 22:36:39.751 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: BatteryLevel -> 255
2020-12-05 22:36:39.751 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: nValue -> 0
2020-12-05 22:36:39.751 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: sValue -> 0
2020-12-05 22:36:39.751 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: LastUpdate -> 2020-12-05 22:36:39
2020-12-05 22:36:39.751 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Order -> 6
2020-12-05 22:36:39.751 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjValue -> 0.0
2020-12-05 22:36:39.751 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjMulti -> 1.0
2020-12-05 22:36:39.751 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjValue2 -> 0.0
2020-12-05 22:36:39.751 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjMulti2 -> 1.0
2020-12-05 22:36:39.751 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: StrParam1 -> 0
2020-12-05 22:36:39.751 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: StrParam2 -> 0
2020-12-05 22:36:39.751 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: LastLevel -> 0
2020-12-05 22:36:39.751 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Protected -> nil
2020-12-05 22:36:39.751 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: CustomImage -> nil
2020-12-05 22:36:39.751 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Description -> nil
2020-12-05 22:36:39.751 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Options -> nil
2020-12-05 22:36:39.751 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Color -> nil
2020-12-05 22:36:39.751 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:39.751 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: system -> value (versions)
2020-12-05 22:36:39.751 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:39.801 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: OS -> Linux raspberrypi 5.4.72-v7+ #1356 SMP Thu Oct 22 13:56:54 BST 2020 armv7l GNU/Linux
2020-12-05 22:36:39.801
2020-12-05 22:36:39.801 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Domoticz -> 2020.2
2020-12-05 22:36:39.801 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Dzvents -> 3.0.2
2020-12-05 22:36:39.802 Status: dzVents: Info: dumpAttributes: ------ Finished Script #1
2020-12-05 22:36:41.043 Status: dzVents: Info: dumpAttributes: ------ Start internal script: Script #1: Device: "La Porte du Garage (Module Rfxcom)", Index: 52
2020-12-05 22:36:41.044 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:41.044 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: attribute -> value (dzVents)
2020-12-05 22:36:41.044 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:41.044 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: type, subType -> RFY, RFY
2020-12-05 22:36:41.044 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: switchTypeValue -> 3
2020-12-05 22:36:41.044 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: adapters -> {"Switch device adapter"}
2020-12-05 22:36:41.044 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: rawData -> {"1"}
2020-12-05 22:36:41.044 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: hwType -> RFXCOM - RFXtrx433 USB 433.92MHz Transceiver, 1
2020-12-05 22:36:41.044 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: levelNames -> nil
2020-12-05 22:36:41.044 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: modes -> nil
2020-12-05 22:36:41.104 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:41.104 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: field -> value (database)
2020-12-05 22:36:41.104 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:41.104 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: ID -> 52
2020-12-05 22:36:41.104 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: HardwareID -> 6
2020-12-05 22:36:41.104 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: DeviceID -> 000203
2020-12-05 22:36:41.104 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Unit -> 1
2020-12-05 22:36:41.104 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Name -> La Porte du Garage
2020-12-05 22:36:41.105 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Used -> 1
2020-12-05 22:36:41.105 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Type -> 26
2020-12-05 22:36:41.105 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SubType -> 0
2020-12-05 22:36:41.105 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SwitchType -> 3
2020-12-05 22:36:41.105 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Favorite -> 1
2020-12-05 22:36:41.105 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SignalLevel -> 12
2020-12-05 22:36:41.105 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: BatteryLevel -> 255
2020-12-05 22:36:41.105 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: nValue -> 1
2020-12-05 22:36:41.105 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: sValue -> 1
2020-12-05 22:36:41.105 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: LastUpdate -> 2020-12-05 22:36:40
2020-12-05 22:36:41.105 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Order -> 6
2020-12-05 22:36:41.105 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjValue -> 0.0
2020-12-05 22:36:41.105 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjMulti -> 1.0
2020-12-05 22:36:41.105 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjValue2 -> 0.0
2020-12-05 22:36:41.105 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjMulti2 -> 1.0
2020-12-05 22:36:41.105 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: StrParam1 -> 0
2020-12-05 22:36:41.105 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: StrParam2 -> 0
2020-12-05 22:36:41.105 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: LastLevel -> 0
2020-12-05 22:36:41.105 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Protected -> nil
2020-12-05 22:36:41.105 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: CustomImage -> nil
2020-12-05 22:36:41.105 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Description -> nil
2020-12-05 22:36:41.105 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Options -> nil
2020-12-05 22:36:41.105 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Color -> nil
2020-12-05 22:36:41.106 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:41.106 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: system -> value (versions)
2020-12-05 22:36:41.106 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:41.155 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: OS -> Linux raspberrypi 5.4.72-v7+ #1356 SMP Thu Oct 22 13:56:54 BST 2020 armv7l GNU/Linux
2020-12-05 22:36:41.155
2020-12-05 22:36:41.155 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Domoticz -> 2020.2
2020-12-05 22:36:41.155 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Dzvents -> 3.0.2
2020-12-05 22:36:41.155 Status: dzVents: Info: dumpAttributes: ------ Finished Script #1
2020-12-05 22:36:43.915 (Module Rfxcom) RFY (La Porte du Garage)
2020-12-05 22:36:43.907 Status: User: Admin initiated a switch command (52/La Porte du Garage/Stop)
2020-12-05 22:36:44.036 Status: dzVents: Info: Handling events for: "La Porte du Garage", value: "Stopped"
2020-12-05 22:36:44.036 Status: dzVents: Info: dumpAttributes: ------ Start internal script: Script #1: Device: "La Porte du Garage (Module Rfxcom)", Index: 52
2020-12-05 22:36:44.036 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:44.036 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: attribute -> value (dzVents)
2020-12-05 22:36:44.036 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:44.037 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: type, subType -> RFY, RFY
2020-12-05 22:36:44.037 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: switchTypeValue -> 3
2020-12-05 22:36:44.037 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: adapters -> {"Switch device adapter"}
2020-12-05 22:36:44.037 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: rawData -> {}
2020-12-05 22:36:44.037 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: hwType -> RFXCOM - RFXtrx433 USB 433.92MHz Transceiver, 1
2020-12-05 22:36:44.037 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: levelNames -> nil
2020-12-05 22:36:44.037 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: modes -> nil
2020-12-05 22:36:44.094 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:44.094 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: field -> value (database)
2020-12-05 22:36:44.094 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:44.094 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: ID -> 52
2020-12-05 22:36:44.094 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: HardwareID -> 6
2020-12-05 22:36:44.094 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: DeviceID -> 000203
2020-12-05 22:36:44.094 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Unit -> 1
2020-12-05 22:36:44.094 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Name -> La Porte du Garage
2020-12-05 22:36:44.094 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Used -> 1
2020-12-05 22:36:44.094 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Type -> 26
2020-12-05 22:36:44.094 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SubType -> 0
2020-12-05 22:36:44.094 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SwitchType -> 3
2020-12-05 22:36:44.095 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Favorite -> 1
2020-12-05 22:36:44.095 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SignalLevel -> 12
2020-12-05 22:36:44.095 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: BatteryLevel -> 255
2020-12-05 22:36:44.095 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: nValue -> 0
2020-12-05 22:36:44.095 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: sValue -> 2020-12-05 22:36:43
2020-12-05 22:36:44.095 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: LastUpdate -> 6
2020-12-05 22:36:44.095 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Order -> 0.0
2020-12-05 22:36:44.095 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjValue -> 1.0
2020-12-05 22:36:44.095 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjMulti -> 0.0
2020-12-05 22:36:44.095 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjValue2 -> 1.0
2020-12-05 22:36:44.095 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjMulti2 -> 0
2020-12-05 22:36:44.095 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: StrParam1 -> 0
2020-12-05 22:36:44.095 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: StrParam2 -> 0
2020-12-05 22:36:44.095 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: LastLevel -> nil
2020-12-05 22:36:44.095 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Protected -> nil
2020-12-05 22:36:44.095 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: CustomImage -> nil
2020-12-05 22:36:44.095 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Description -> nil
2020-12-05 22:36:44.095 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Options -> nil
2020-12-05 22:36:44.095 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Color -> nil
2020-12-05 22:36:44.095 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:44.095 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: system -> value (versions)
2020-12-05 22:36:44.096 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:44.141 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: OS -> Linux raspberrypi 5.4.72-v7+ #1356 SMP Thu Oct 22 13:56:54 BST 2020 armv7l GNU/Linux
2020-12-05 22:36:44.141
2020-12-05 22:36:44.141 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Domoticz -> 2020.2
2020-12-05 22:36:44.141 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Dzvents -> 3.0.2
2020-12-05 22:36:44.142 Status: dzVents: Info: dumpAttributes: ------ Finished Script #1
2020-12-05 22:36:49.153 (Module Rfxcom) RFY (La Porte du Garage)
2020-12-05 22:36:49.146 Status: User: Admin initiated a switch command (52/La Porte du Garage/On)
2020-12-05 22:36:49.277 Status: dzVents: Info: Handling events for: "La Porte du Garage", value: "Closed"
2020-12-05 22:36:49.278 Status: dzVents: Info: dumpAttributes: ------ Start internal script: Script #1: Device: "La Porte du Garage (Module Rfxcom)", Index: 52
2020-12-05 22:36:49.278 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:49.278 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: attribute -> value (dzVents)
2020-12-05 22:36:49.278 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:49.278 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: type, subType -> RFY, RFY
2020-12-05 22:36:49.278 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: switchTypeValue -> 3
2020-12-05 22:36:49.278 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: adapters -> {"Switch device adapter"}
2020-12-05 22:36:49.278 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: rawData -> {}
2020-12-05 22:36:49.278 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: hwType -> RFXCOM - RFXtrx433 USB 433.92MHz Transceiver, 1
2020-12-05 22:36:49.278 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: levelNames -> nil
2020-12-05 22:36:49.278 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: modes -> nil
2020-12-05 22:36:49.339 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:49.340 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: field -> value (database)
2020-12-05 22:36:49.340 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:49.340 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: ID -> 52
2020-12-05 22:36:49.340 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: HardwareID -> 6
2020-12-05 22:36:49.340 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: DeviceID -> 000203
2020-12-05 22:36:49.340 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Unit -> 1
2020-12-05 22:36:49.340 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Name -> La Porte du Garage
2020-12-05 22:36:49.340 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Used -> 1
2020-12-05 22:36:49.340 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Type -> 26
2020-12-05 22:36:49.340 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SubType -> 0
2020-12-05 22:36:49.340 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SwitchType -> 3
2020-12-05 22:36:49.340 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Favorite -> 1
2020-12-05 22:36:49.340 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SignalLevel -> 12
2020-12-05 22:36:49.340 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: BatteryLevel -> 255
2020-12-05 22:36:49.340 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: nValue -> 3
2020-12-05 22:36:49.340 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: sValue -> 2020-12-05 22:36:49
2020-12-05 22:36:49.340 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: LastUpdate -> 6
2020-12-05 22:36:49.340 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Order -> 0.0
2020-12-05 22:36:49.340 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjValue -> 1.0
2020-12-05 22:36:49.341 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjMulti -> 0.0
2020-12-05 22:36:49.341 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjValue2 -> 1.0
2020-12-05 22:36:49.341 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjMulti2 -> 0
2020-12-05 22:36:49.341 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: StrParam1 -> 0
2020-12-05 22:36:49.341 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: StrParam2 -> 0
2020-12-05 22:36:49.341 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: LastLevel -> nil
2020-12-05 22:36:49.341 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Protected -> nil
2020-12-05 22:36:49.341 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: CustomImage -> nil
2020-12-05 22:36:49.341 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Description -> nil
2020-12-05 22:36:49.341 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Options -> nil
2020-12-05 22:36:49.341 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Color -> nil
2020-12-05 22:36:49.341 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:49.341 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: system -> value (versions)
2020-12-05 22:36:49.341 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:49.389 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: OS -> Linux raspberrypi 5.4.72-v7+ #1356 SMP Thu Oct 22 13:56:54 BST 2020 armv7l GNU/Linux
2020-12-05 22:36:49.389
2020-12-05 22:36:49.389 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Domoticz -> 2020.2
2020-12-05 22:36:49.389 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Dzvents -> 3.0.2
2020-12-05 22:36:49.389 Status: dzVents: Info: dumpAttributes: ------ Finished Script #1
2020-12-05 22:36:56.510 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: levelNames -> nil
2020-12-05 22:36:56.510 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: modes -> nil
2020-12-05 22:36:56.570 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:56.570 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: field -> value (database)
2020-12-05 22:36:56.570 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:56.570 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: ID -> 52
2020-12-05 22:36:56.570 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: HardwareID -> 6
2020-12-05 22:36:56.570 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: DeviceID -> 000203
2020-12-05 22:36:56.570 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Unit -> 1
2020-12-05 22:36:56.570 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Name -> La Porte du Garage
2020-12-05 22:36:56.570 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Used -> 1
2020-12-05 22:36:56.570 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Type -> 26
2020-12-05 22:36:56.570 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SubType -> 0
2020-12-05 22:36:56.570 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SwitchType -> 3
2020-12-05 22:36:56.570 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Favorite -> 1
2020-12-05 22:36:56.570 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SignalLevel -> 12
2020-12-05 22:36:56.570 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: BatteryLevel -> 255
2020-12-05 22:36:56.571 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: nValue -> 1
2020-12-05 22:36:56.571 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: sValue -> 1
2020-12-05 22:36:56.571 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: LastUpdate -> 2020-12-05 22:36:56
2020-12-05 22:36:56.571 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Order -> 6
2020-12-05 22:36:56.571 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjValue -> 0.0
2020-12-05 22:36:56.571 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjMulti -> 1.0
2020-12-05 22:36:56.571 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjValue2 -> 0.0
2020-12-05 22:36:56.571 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjMulti2 -> 1.0
2020-12-05 22:36:56.571 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: StrParam1 -> 0
2020-12-05 22:36:56.571 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: StrParam2 -> 0
2020-12-05 22:36:56.571 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: LastLevel -> 0
2020-12-05 22:36:56.571 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Protected -> nil
2020-12-05 22:36:56.571 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: CustomImage -> nil
2020-12-05 22:36:56.571 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Description -> nil
2020-12-05 22:36:56.571 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Options -> nil
2020-12-05 22:36:56.571 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Color -> nil
2020-12-05 22:36:56.571 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:56.571 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: system -> value (versions)
2020-12-05 22:36:56.571 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:56.627 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: OS -> Linux raspberrypi 5.4.72-v7+ #1356 SMP Thu Oct 22 13:56:54 BST 2020 armv7l GNU/Linux
2020-12-05 22:36:56.627
2020-12-05 22:36:56.627 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Domoticz -> 2020.2
2020-12-05 22:36:56.627 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Dzvents -> 3.0.2
2020-12-05 22:36:56.627 Status: dzVents: Info: dumpAttributes: ------ Finished Script #1
2020-12-05 22:36:56.629 Status: dzVents: Info: Handling events for: "Porte Garage Sensor", value: "Closed"
2020-12-05 22:36:56.629 Status: dzVents: Info: quiet gate: ------ Start internal script: Controle sensor garage: Device: "Porte Garage Sensor (Conbee)", Index: 148
2020-12-05 22:36:56.629 Status: dzVents: Debug: quiet gate: State of Porte Garage Sensor is Closed
2020-12-05 22:36:56.629 Status: dzVents: Debug: quiet gate: OpenURL: url = http://127.0.0.1:8080/json.htm?type=command&param=udevice&nvalue=0&svalue=0&idx=52
2020-12-05 22:36:56.629 Status: dzVents: Debug: quiet gate: OpenURL: method = GET
2020-12-05 22:36:56.629 Status: dzVents: Debug: quiet gate: OpenURL: post data = nil
2020-12-05 22:36:56.629 Status: dzVents: Debug: quiet gate: OpenURL: headers = nil
2020-12-05 22:36:56.629 Status: dzVents: Debug: quiet gate: OpenURL: callback = nil
2020-12-05 22:36:56.629 Status: dzVents: Info: quiet gate: ------ Finished Controle sensor garage
2020-12-05 22:36:56.630 Status: EventSystem: Script event triggered: /home/pi/domoticz/dzVents/runtime/dzVents.lua
2020-12-05 22:36:56.791 Status: dzVents: Info: Handling events for: "La Porte du Garage", value: "Stopped"
2020-12-05 22:36:56.791 Status: dzVents: Info: dumpAttributes: ------ Start internal script: Script #1: Device: "La Porte du Garage (Module Rfxcom)", Index: 52
2020-12-05 22:36:56.791 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:56.791 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: attribute -> value (dzVents)
2020-12-05 22:36:56.791 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:56.791 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: type, subType -> RFY, RFY
2020-12-05 22:36:56.791 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: switchTypeValue -> 3
2020-12-05 22:36:56.791 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: adapters -> {"Switch device adapter"}
2020-12-05 22:36:56.791 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: rawData -> {"0"}
2020-12-05 22:36:56.791 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: hwType -> RFXCOM - RFXtrx433 USB 433.92MHz Transceiver, 1
2020-12-05 22:36:56.792 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: levelNames -> nil
2020-12-05 22:36:56.792 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: modes -> nil
2020-12-05 22:36:56.849 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:56.849 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: field -> value (database)
2020-12-05 22:36:56.849 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:56.849 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: ID -> 52
2020-12-05 22:36:56.849 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: HardwareID -> 6
2020-12-05 22:36:56.849 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: DeviceID -> 000203
2020-12-05 22:36:56.849 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Unit -> 1
2020-12-05 22:36:56.850 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Name -> La Porte du Garage
2020-12-05 22:36:56.850 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Used -> 1
2020-12-05 22:36:56.850 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Type -> 26
2020-12-05 22:36:56.850 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SubType -> 0
2020-12-05 22:36:56.850 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SwitchType -> 3
2020-12-05 22:36:56.850 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Favorite -> 1
2020-12-05 22:36:56.850 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SignalLevel -> 12
2020-12-05 22:36:56.850 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: BatteryLevel -> 255
2020-12-05 22:36:56.850 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: nValue -> 0
2020-12-05 22:36:56.850 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: sValue -> 0
2020-12-05 22:36:56.850 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: LastUpdate -> 2020-12-05 22:36:56
2020-12-05 22:36:56.850 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Order -> 6
2020-12-05 22:36:56.850 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjValue -> 0.0
2020-12-05 22:36:56.850 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjMulti -> 1.0
2020-12-05 22:36:56.850 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjValue2 -> 0.0
2020-12-05 22:36:56.850 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjMulti2 -> 1.0
2020-12-05 22:36:56.850 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: StrParam1 -> 0
2020-12-05 22:36:56.850 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: StrParam2 -> 0
2020-12-05 22:36:56.850 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: LastLevel -> 0
2020-12-05 22:36:56.850 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Protected -> nil
2020-12-05 22:36:56.850 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: CustomImage -> nil
2020-12-05 22:36:56.851 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Description -> nil
2020-12-05 22:36:56.851 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Options -> nil
2020-12-05 22:36:56.851 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Color -> nil
2020-12-05 22:36:56.851 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:56.851 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: system -> value (versions)
2020-12-05 22:36:56.851 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:36:56.896 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: OS -> Linux raspberrypi 5.4.72-v7+ #1356 SMP Thu Oct 22 13:56:54 BST 2020 armv7l GNU/Linux
2020-12-05 22:36:56.896
2020-12-05 22:36:56.896 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Domoticz -> 2020.2
2020-12-05 22:36:56.896 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Dzvents -> 3.0.2
2020-12-05 22:36:56.897 Status: dzVents: Info: dumpAttributes: ------ Finished Script #1 
samourai47
Posts: 50
Joined: Wednesday 06 March 2019 21:52
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: .silent() seems not to work anymore

Post by samourai47 »

The second

Code: Select all

 2020-12-05 22:39:03.998 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: modes -> nil
2020-12-05 22:39:04.056 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:39:04.056 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: field -> value (database)
2020-12-05 22:39:04.056 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:39:04.056 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: ID -> 52
2020-12-05 22:39:04.056 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: HardwareID -> 6
2020-12-05 22:39:04.056 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: DeviceID -> 000203
2020-12-05 22:39:04.056 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Unit -> 1
2020-12-05 22:39:04.056 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Name -> La Porte du Garage
2020-12-05 22:39:04.056 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Used -> 1
2020-12-05 22:39:04.056 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Type -> 26
2020-12-05 22:39:04.056 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SubType -> 0
2020-12-05 22:39:04.056 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SwitchType -> 3
2020-12-05 22:39:04.057 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Favorite -> 1
2020-12-05 22:39:04.057 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SignalLevel -> 12
2020-12-05 22:39:04.057 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: BatteryLevel -> 255
2020-12-05 22:39:04.057 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: nValue -> 0
2020-12-05 22:39:04.057 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: sValue -> 0
2020-12-05 22:39:04.057 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: LastUpdate -> 2020-12-05 22:39:03
2020-12-05 22:39:04.057 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Order -> 6
2020-12-05 22:39:04.057 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjValue -> 0.0
2020-12-05 22:39:04.057 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjMulti -> 1.0
2020-12-05 22:39:04.057 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjValue2 -> 0.0
2020-12-05 22:39:04.057 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjMulti2 -> 1.0
2020-12-05 22:39:04.057 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: StrParam1 -> 0
2020-12-05 22:39:04.057 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: StrParam2 -> 0
2020-12-05 22:39:04.057 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: LastLevel -> 0
2020-12-05 22:39:04.057 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Protected -> nil
2020-12-05 22:39:04.057 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: CustomImage -> nil
2020-12-05 22:39:04.057 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Description -> nil
2020-12-05 22:39:04.057 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Options -> nil
2020-12-05 22:39:04.057 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Color -> nil
2020-12-05 22:39:04.057 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:39:04.057 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: system -> value (versions)
2020-12-05 22:39:04.057 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:39:04.114 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: OS -> Linux raspberrypi 5.4.72-v7+ #1356 SMP Thu Oct 22 13:56:54 BST 2020 armv7l GNU/Linux
2020-12-05 22:39:04.114
2020-12-05 22:39:04.114 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Domoticz -> 2020.2
2020-12-05 22:39:04.115 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Dzvents -> 3.0.2
2020-12-05 22:39:04.115 Status: dzVents: Info: dumpAttributes: ------ Finished Script #1
2020-12-05 22:39:04.117 Status: dzVents: Info: Handling events for: "Porte Garage Sensor", value: "Open"
2020-12-05 22:39:04.117 Status: dzVents: Info: quiet gate: ------ Start internal script: Controle sensor garage: Device: "Porte Garage Sensor (Conbee)", Index: 148
2020-12-05 22:39:04.117 Status: dzVents: Debug: quiet gate: State of Porte Garage Sensor is Open
2020-12-05 22:39:04.117 Status: dzVents: Debug: quiet gate: OpenURL: url = http://127.0.0.1:8080/json.htm?type=command&param=udevice&nvalue=1&svalue=1&idx=52
2020-12-05 22:39:04.117 Status: dzVents: Debug: quiet gate: OpenURL: method = GET
2020-12-05 22:39:04.117 Status: dzVents: Debug: quiet gate: OpenURL: post data = nil
2020-12-05 22:39:04.117 Status: dzVents: Debug: quiet gate: OpenURL: headers = nil
2020-12-05 22:39:04.117 Status: dzVents: Debug: quiet gate: OpenURL: callback = nil
2020-12-05 22:39:04.118 Status: dzVents: Info: quiet gate: ------ Finished Controle sensor garage
2020-12-05 22:39:04.119 Status: EventSystem: Script event triggered: /home/pi/domoticz/dzVents/runtime/dzVents.lua
2020-12-05 22:39:04.303 Status: dzVents: Info: Handling events for: "La Porte du Garage", value: "Open"
2020-12-05 22:39:04.303 Status: dzVents: Info: dumpAttributes: ------ Start internal script: Script #1: Device: "La Porte du Garage (Module Rfxcom)", Index: 52
2020-12-05 22:39:04.303 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:39:04.303 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: attribute -> value (dzVents)
2020-12-05 22:39:04.303 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:39:04.303 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: type, subType -> RFY, RFY
2020-12-05 22:39:04.303 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: switchTypeValue -> 3
2020-12-05 22:39:04.303 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: adapters -> {"Switch device adapter"}
2020-12-05 22:39:04.303 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: rawData -> {"1"}
2020-12-05 22:39:04.303 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: hwType -> RFXCOM - RFXtrx433 USB 433.92MHz Transceiver, 1
2020-12-05 22:39:04.303 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: levelNames -> nil
2020-12-05 22:39:04.303 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: modes -> nil
2020-12-05 22:39:04.361 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:39:04.361 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: field -> value (database)
2020-12-05 22:39:04.361 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:39:04.362 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: ID -> 52
2020-12-05 22:39:04.362 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: HardwareID -> 6
2020-12-05 22:39:04.362 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: DeviceID -> 000203
2020-12-05 22:39:04.362 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Unit -> 1
2020-12-05 22:39:04.362 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Name -> La Porte du Garage
2020-12-05 22:39:04.362 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Used -> 1
2020-12-05 22:39:04.362 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Type -> 26
2020-12-05 22:39:04.362 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SubType -> 0
2020-12-05 22:39:04.362 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SwitchType -> 3
2020-12-05 22:39:04.362 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Favorite -> 1
2020-12-05 22:39:04.362 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SignalLevel -> 12
2020-12-05 22:39:04.362 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: BatteryLevel -> 255
2020-12-05 22:39:04.362 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: nValue -> 1
2020-12-05 22:39:04.362 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: sValue -> 1
2020-12-05 22:39:04.362 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: LastUpdate -> 2020-12-05 22:39:04
2020-12-05 22:39:04.362 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Order -> 6
2020-12-05 22:39:04.362 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjValue -> 0.0
2020-12-05 22:39:04.362 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjMulti -> 1.0
2020-12-05 22:39:04.362 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjValue2 -> 0.0
2020-12-05 22:39:04.362 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjMulti2 -> 1.0
2020-12-05 22:39:04.362 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: StrParam1 -> 0
2020-12-05 22:39:04.362 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: StrParam2 -> 0
2020-12-05 22:39:04.363 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: LastLevel -> 0
2020-12-05 22:39:04.363 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Protected -> nil
2020-12-05 22:39:04.363 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: CustomImage -> nil
2020-12-05 22:39:04.363 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Description -> nil
2020-12-05 22:39:04.363 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Options -> nil
2020-12-05 22:39:04.363 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Color -> nil
2020-12-05 22:39:04.363 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:39:04.363 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: system -> value (versions)
2020-12-05 22:39:04.363 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:39:04.409 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: OS -> Linux raspberrypi 5.4.72-v7+ #1356 SMP Thu Oct 22 13:56:54 BST 2020 armv7l GNU/Linux
2020-12-05 22:39:04.409
2020-12-05 22:39:04.409 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Domoticz -> 2020.2
2020-12-05 22:39:04.409 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Dzvents -> 3.0.2
2020-12-05 22:39:04.410 Status: dzVents: Info: dumpAttributes: ------ Finished Script #1
2020-12-05 22:39:22.133 (Module Rfxcom) Temp (T° Chambre Marie)
2020-12-05 22:39:28.067 Status: dzVents: Info: Handling events for: "La Porte du Garage", value: "Open"
2020-12-05 22:39:28.067 Status: dzVents: Info: dumpAttributes: ------ Start internal script: Script #1: Device: "La Porte du Garage (Module Rfxcom)", Index: 52
2020-12-05 22:39:28.067 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:39:28.067 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: attribute -> value (dzVents)
2020-12-05 22:39:28.067 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:39:28.067 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: type, subType -> RFY, RFY
2020-12-05 22:39:28.067 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: switchTypeValue -> 3
2020-12-05 22:39:28.067 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: adapters -> {"Switch device adapter"}
2020-12-05 22:39:28.067 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: rawData -> {"1"}
2020-12-05 22:39:28.068 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: hwType -> RFXCOM - RFXtrx433 USB 433.92MHz Transceiver, 1
2020-12-05 22:39:28.068 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: levelNames -> nil
2020-12-05 22:39:28.068 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: modes -> nil
2020-12-05 22:39:28.125 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:39:28.125 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: field -> value (database)
2020-12-05 22:39:28.125 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:39:28.125 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: ID -> 52
2020-12-05 22:39:28.125 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: HardwareID -> 6
2020-12-05 22:39:28.125 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: DeviceID -> 000203
2020-12-05 22:39:28.125 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Unit -> 1
2020-12-05 22:39:28.125 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Name -> La Porte du Garage
2020-12-05 22:39:28.125 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Used -> 1
2020-12-05 22:39:28.125 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Type -> 26
2020-12-05 22:39:28.125 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SubType -> 0
2020-12-05 22:39:28.126 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SwitchType -> 3
2020-12-05 22:39:28.126 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Favorite -> 1
2020-12-05 22:39:28.126 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SignalLevel -> 12
2020-12-05 22:39:28.126 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: BatteryLevel -> 255
2020-12-05 22:39:28.126 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: nValue -> 0
2020-12-05 22:39:28.126 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: sValue -> 0
2020-12-05 22:39:28.126 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: LastUpdate -> 2020-12-05 22:39:27
2020-12-05 22:39:28.126 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Order -> 6
2020-12-05 22:39:28.126 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjValue -> 0.0
2020-12-05 22:39:28.126 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjMulti -> 1.0
2020-12-05 22:39:28.126 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjValue2 -> 0.0
2020-12-05 22:39:28.126 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjMulti2 -> 1.0
2020-12-05 22:39:28.126 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: StrParam1 -> 0
2020-12-05 22:39:28.126 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: StrParam2 -> 0
2020-12-05 22:39:28.126 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: LastLevel -> 0
2020-12-05 22:39:28.126 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Protected -> nil
2020-12-05 22:39:28.126 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: CustomImage -> nil
2020-12-05 22:39:28.126 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Description -> nil
2020-12-05 22:39:28.126 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Options -> nil
2020-12-05 22:39:28.126 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Color -> nil
2020-12-05 22:39:28.127 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:39:28.127 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: system -> value (versions)
2020-12-05 22:39:28.127 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:39:28.174 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: OS -> Linux raspberrypi 5.4.72-v7+ #1356 SMP Thu Oct 22 13:56:54 BST 2020 armv7l GNU/Linux
2020-12-05 22:39:28.174
2020-12-05 22:39:28.174 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Domoticz -> 2020.2
2020-12-05 22:39:28.174 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Dzvents -> 3.0.2
2020-12-05 22:39:28.174 Status: dzVents: Info: dumpAttributes: ------ Finished Script #1
2020-12-05 22:39:28.317 Status: dzVents: Info: Handling events for: "La Porte du Garage", value: "Stopped"
2020-12-05 22:39:28.317 Status: dzVents: Info: dumpAttributes: ------ Start internal script: Script #1: Device: "La Porte du Garage (Module Rfxcom)", Index: 52
2020-12-05 22:39:28.317 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:39:28.317 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: attribute -> value (dzVents)
2020-12-05 22:39:28.317 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:39:28.317 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: type, subType -> RFY, RFY
2020-12-05 22:39:28.317 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: switchTypeValue -> 3
2020-12-05 22:39:28.317 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: adapters -> {"Switch device adapter"}
2020-12-05 22:39:28.317 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: rawData -> {"0"}
2020-12-05 22:39:28.317 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: hwType -> RFXCOM - RFXtrx433 USB 433.92MHz Transceiver, 1
2020-12-05 22:39:28.317 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: levelNames -> nil
2020-12-05 22:39:28.317 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: modes -> nil
2020-12-05 22:39:28.375 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:39:28.375 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: field -> value (database)
2020-12-05 22:39:28.375 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:39:28.375 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: ID -> 52
2020-12-05 22:39:28.375 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: HardwareID -> 6
2020-12-05 22:39:28.375 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: DeviceID -> 000203
2020-12-05 22:39:28.376 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Unit -> 1
2020-12-05 22:39:28.376 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Name -> La Porte du Garage
2020-12-05 22:39:28.376 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Used -> 1
2020-12-05 22:39:28.376 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Type -> 26
2020-12-05 22:39:28.376 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SubType -> 0
2020-12-05 22:39:28.376 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SwitchType -> 3
2020-12-05 22:39:28.376 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Favorite -> 1
2020-12-05 22:39:28.376 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SignalLevel -> 12
2020-12-05 22:39:28.376 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: BatteryLevel -> 255
2020-12-05 22:39:28.376 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: nValue -> 0
2020-12-05 22:39:28.376 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: sValue -> 0
2020-12-05 22:39:28.376 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: LastUpdate -> 2020-12-05 22:39:27
2020-12-05 22:39:28.376 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Order -> 6
2020-12-05 22:39:28.376 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjValue -> 0.0
2020-12-05 22:39:28.376 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjMulti -> 1.0
2020-12-05 22:39:28.376 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjValue2 -> 0.0
2020-12-05 22:39:28.376 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjMulti2 -> 1.0
2020-12-05 22:39:28.376 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: StrParam1 -> 0
2020-12-05 22:39:28.376 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: StrParam2 -> 0
2020-12-05 22:39:28.376 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: LastLevel -> 0
2020-12-05 22:39:28.377 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Protected -> nil
2020-12-05 22:39:28.377 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: CustomImage -> nil
2020-12-05 22:39:28.377 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Description -> nil
2020-12-05 22:39:28.377 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Options -> nil
2020-12-05 22:39:28.377 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Color -> nil
2020-12-05 22:39:28.377 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:39:28.377 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: system -> value (versions)
2020-12-05 22:39:28.377 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:39:28.424 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: OS -> Linux raspberrypi 5.4.72-v7+ #1356 SMP Thu Oct 22 13:56:54 BST 2020 armv7l GNU/Linux
2020-12-05 22:39:28.424
2020-12-05 22:39:28.424 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Domoticz -> 2020.2
2020-12-05 22:39:28.424 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Dzvents -> 3.0.2
2020-12-05 22:39:28.424 Status: dzVents: Info: dumpAttributes: ------ Finished Script #1 
samourai47
Posts: 50
Joined: Wednesday 06 March 2019 21:52
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: .silent() seems not to work anymore

Post by samourai47 »

the 3d.... Door garage is close but on the device is noted Stopped, and i push the close button on domoticz

Code: Select all

 2020-12-05 22:41:17.698 Status: User: Admin initiated a switch command (52/La Porte du Garage/On)
2020-12-05 22:41:17.860 Status: dzVents: Info: Handling events for: "La Porte du Garage", value: "Closed"
2020-12-05 22:41:17.861 Status: dzVents: Info: dumpAttributes: ------ Start internal script: Script #1: Device: "La Porte du Garage (Module Rfxcom)", Index: 52
2020-12-05 22:41:17.861 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:41:17.861 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: attribute -> value (dzVents)
2020-12-05 22:41:17.861 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:41:17.861 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: type, subType -> RFY, RFY
2020-12-05 22:41:17.861 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: switchTypeValue -> 3
2020-12-05 22:41:17.861 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: adapters -> {"Switch device adapter"}
2020-12-05 22:41:17.861 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: rawData -> {}
2020-12-05 22:41:17.861 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: hwType -> RFXCOM - RFXtrx433 USB 433.92MHz Transceiver, 1
2020-12-05 22:41:17.861 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: levelNames -> nil
2020-12-05 22:41:17.861 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: modes -> nil
2020-12-05 22:41:17.919 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:41:17.919 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: field -> value (database)
2020-12-05 22:41:17.919 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:41:17.919 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: ID -> 52
2020-12-05 22:41:17.920 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: HardwareID -> 6
2020-12-05 22:41:17.920 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: DeviceID -> 000203
2020-12-05 22:41:17.920 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Unit -> 1
2020-12-05 22:41:17.920 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Name -> La Porte du Garage
2020-12-05 22:41:17.920 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Used -> 1
2020-12-05 22:41:17.920 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Type -> 26
2020-12-05 22:41:17.920 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SubType -> 0
2020-12-05 22:41:17.920 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SwitchType -> 3
2020-12-05 22:41:17.920 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Favorite -> 1
2020-12-05 22:41:17.920 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: SignalLevel -> 12
2020-12-05 22:41:17.920 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: BatteryLevel -> 255
2020-12-05 22:41:17.920 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: nValue -> 3
2020-12-05 22:41:17.920 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: sValue -> 2020-12-05 22:41:17
2020-12-05 22:41:17.920 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: LastUpdate -> 6
2020-12-05 22:41:17.920 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Order -> 0.0
2020-12-05 22:41:17.920 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjValue -> 1.0
2020-12-05 22:41:17.920 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjMulti -> 0.0
2020-12-05 22:41:17.920 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjValue2 -> 1.0
2020-12-05 22:41:17.920 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: AddjMulti2 -> 0
2020-12-05 22:41:17.920 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: StrParam1 -> 0
2020-12-05 22:41:17.920 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: StrParam2 -> 0
2020-12-05 22:41:17.920 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: LastLevel -> nil
2020-12-05 22:41:17.920 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Protected -> nil
2020-12-05 22:41:17.920 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: CustomImage -> nil
2020-12-05 22:41:17.921 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Description -> nil
2020-12-05 22:41:17.921 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Options -> nil
2020-12-05 22:41:17.921 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Color -> nil
2020-12-05 22:41:17.921 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:41:17.921 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: system -> value (versions)
2020-12-05 22:41:17.921 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage
2020-12-05 22:41:17.967 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: OS -> Linux raspberrypi 5.4.72-v7+ #1356 SMP Thu Oct 22 13:56:54 BST 2020 armv7l GNU/Linux
2020-12-05 22:41:17.967
2020-12-05 22:41:17.967 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Domoticz -> 2020.2
2020-12-05 22:41:17.967 Status: dzVents: !Info: dumpAttributes: 52: La Porte du Garage: Dzvents -> 3.0.2
2020-12-05 22:41:17.967 Status: dzVents: Info: dumpAttributes: ------ Finished Script #1 
User avatar
waaren
Posts: 6028
Joined: Tuesday 03 January 2017 14:18
Target OS: Linux
Domoticz version: Beta
Location: Netherlands
Contact:

Re: .silent() seems not to work anymore

Post by waaren »

samourai47 wrote: Saturday 05 December 2020 22:43 the 3rd.... Door garage is close but on the device is noted Stopped, and i push the close button on domoticz
Your type of blind does react just a bit different to the nValue in the API call..

Can you try this one?

Code: Select all

return
{
    on =
    {
        devices =
        {
            'Porte Garage Sensor (Conbee)',
        },
    },

    logging =
    {
        level = domoticz.LOG_DEBUG, -- set to domoticz.LOG_ERROR when all is OK
        marker = 'quiet gate',
    },

    execute = function(dz, item)
        local gate = dz.devices('La Porte du Garage')

        local opened = 1
        local closed = 3
        local stopped = 0

        function updateQuiet(id, nValue, sValue)
            local url = dz.settings['Domoticz url'] ..
                '/json.htm?type=command&param=udevice' ..
                '&nvalue=' .. nValue ..
                '&svalue=' .. sValue ..
                '&idx=' .. gate.id

            dz.openURL(url)
        end

        dz.log('State of ' .. item.name .. ' is ' .. item.state, dz.LOG_DEBUG)
        if item.active then
            updateQuiet(gate.id, opened, 0) -- change to closed if action is reverted
        else
            updateQuiet(gate.id, closed, 0) -- change to opened if action is reverted
        end
    end
}
Debian buster, bullseye on RPI-4, Intel NUC.
dz Beta, Z-Wave, RFLink, RFXtrx433e, P1, Youless, Hue, Yeelight, Xiaomi, MQTT
==>> dzVents wiki
samourai47
Posts: 50
Joined: Wednesday 06 March 2019 21:52
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: .silent() seems not to work anymore  [Solved]

Post by samourai47 »

Hello
It seem's to work's very good. Now it's notified Open or Closed regardless of the action. Domoticz button or telecommande.

I just have a little doubt with my Goggle Home who work's with DGZA.

I test many times and i say you

Thank's for help. It's to hard for me alone....
samourai47
Posts: 50
Joined: Wednesday 06 March 2019 21:52
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: .silent() seems not to work anymore

Post by samourai47 »

Hello
I confirm my doubt. When i use Goggle Home with DGZA if the door for example is open with telecommande the device is update to open, but if i want closed with GH it say me that the device is already closed.... And Vice versa

Bizare bizare
samourai47
Posts: 50
Joined: Wednesday 06 March 2019 21:52
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: .silent() seems not to work anymore

Post by samourai47 »

Hello
A solution for people have the same problem

issue 236 (DewGew)

I test some day and i make return here
Post Reply

Who is online

Users browsing this forum: No registered users and 1 guest