This commit is contained in:
2026-02-08 13:21:59 +01:00
parent 3a2a6146b6
commit a426b62d4a
4 changed files with 17 additions and 12 deletions
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "c3c-knx-presence",
"version": "0.0.228",
"version": "0.0.232",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "c3c-knx-presence",
"version": "0.0.228",
"version": "0.0.232",
"hasInstallScript": true,
"license": "GPL-3.0-only",
"devDependencies": {
+1 -1
View File
@@ -35,5 +35,5 @@
"postinstall": "npm run install-control4-utils && npm run driver-manager",
"test": "busted tests/test.lua"
},
"version": "0.0.228"
"version": "0.0.232"
}
+4 -1
View File
@@ -12,9 +12,12 @@
if state.newVal == 1 then
time = os.date("*t")
if C3C.Lib.State.DayTime.IsDay() or (time.hour >= 7 and time.hour <= 22) then
if C3C.Lib.State.DayTime.IsDay() or (time.hour >= 7 and time.hour <= 19) then
C3C.Logger.Debug("Switching on primary light", ctx)
C3C.KnxAddresses.Get("Switch LF Hallway CTRL"):Send(1)
elseif time.hour == 20 then
C3C.Logger.Debug("Switching on primary light with dimmed control during evening", ctx)
C3C.KnxAddresses.Get("Dimmer LF Hallway"):Send(10)
else
C3C.Logger.Debug("Switching on primary light with dimmed control during nighttime", ctx)
C3C.KnxAddresses.Get("Dimmer LF Hallway"):Send(2)
+5 -3
View File
@@ -125,10 +125,12 @@
C3C.KnxAddresses.Get("Switch UF Bathroom Primary CTRL"):Send(1)
C3C.KnxAddresses.Get("Switch UF Bathroom Primary Light 1"):Send(1)
C3C.KnxAddresses.Get("Switch UF Bathroom Primary Light 2"):Send(1)
elseif time.hour > 19 and time.hour <= 20 then
C3C.Logger.Debug("Switching on primary light with dimmed control during nighttime", ctx)
C3C.KnxAddresses.Get("Switch UF Bathroom Primary CTRL"):Send(1)
elseif time.hour == 20 then
C3C.Logger.Debug("Switching on primary light with dimmed control during evening", ctx)
C3C.KnxAddresses.Get("Dimmer UF Bathroom Primary"):Send(12)
else
C3C.Logger.Debug("Switching on primary light with dimmed control during nighttime", ctx)
C3C.KnxAddresses.Get("Dimmer UF Bathroom Primary"):Send(2)
end
end