17 lines
806 B
JavaScript
17 lines
806 B
JavaScript
const washerCycle = 'input_number.washer_cycle_length'
|
|
const washerFinished = 'input_boolean.washer_finished'
|
|
const washerTimer = 'timer.washer_timer'
|
|
const washerDateTime = 'input_datetime.washer_finished'
|
|
const dryerCycle = 'input_number.dryer_cycle_length'
|
|
const dryerFinished = 'input_boolean.dryer_finished'
|
|
const dryerTimer = 'timer.dryer_timer'
|
|
const dryerDateTime = 'input_datetime.dryer_finished'
|
|
|
|
flow.set("washerCycle", washerCycle, "diskCon")
|
|
flow.set("washerFinished", washerFinished, "diskCon")
|
|
flow.set("washerTimer", washerTimer, "diskCon")
|
|
flow.set("washerDateTime", washerDateTime, "diskCon")
|
|
flow.set("dryerCycle", dryerCycle, "diskCon")
|
|
flow.set("dryerFinished", dryerFinished, "diskCon")
|
|
flow.set("dryerTimer", dryerTimer, "diskCon")
|
|
flow.set("dryerDateTime", dryerDateTime, "diskCon") |