start refactoring transmitting

This commit is contained in:
Wolfgang Hottgenroth 2020-11-25 13:15:02 +01:00
parent 7b8535e84e
commit c9b5f16542
Signed by: wn
GPG Key ID: 6C1E5E531E0D5D7F

View File

@ -583,7 +583,7 @@ static t_mbusDevice devices[] = {
.period = PERIOD,
.delay = 0,
.waiting = false,
.active = false
.active = true
},
{
.deviceName = "ComputerPower",
@ -594,7 +594,7 @@ static t_mbusDevice devices[] = {
.period = PERIOD,
.delay = 0,
.waiting = false,
.active = false
.active = true
},
{
.deviceName = "DryerPower",
@ -605,7 +605,7 @@ static t_mbusDevice devices[] = {
.period = PERIOD,
.delay = 0,
.waiting = false,
.active = false
.active = true
},
{
.deviceName = "LaundryPower",
@ -616,7 +616,7 @@ static t_mbusDevice devices[] = {
.period = PERIOD,
.delay = 0,
.waiting = false,
.active = false
.active = true
},
{
.deviceName = "DishwasherPower",
@ -627,7 +627,7 @@ static t_mbusDevice devices[] = {
.period = PERIOD,
.delay = 0,
.waiting = false,
.active = false
.active = true
},
{
.deviceName = "LightPower",
@ -638,7 +638,7 @@ static t_mbusDevice devices[] = {
.period = PERIOD,
.delay = 0,
.waiting = false,
.active = false
.active = true
},
{
.deviceName = "FreezerPower",
@ -649,7 +649,7 @@ static t_mbusDevice devices[] = {
.period = PERIOD,
.delay = 0,
.waiting = false,
.active = false
.active = true
},
{
.deviceName = "FridgePower",
@ -660,7 +660,7 @@ static t_mbusDevice devices[] = {
.period = PERIOD,
.delay = 0,
.waiting = false,
.active = false
.active = true
}
};