Initial commit
This commit is contained in:
17
laundry/processing-start.js
Normal file
17
laundry/processing-start.js
Normal file
@@ -0,0 +1,17 @@
|
||||
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")
|
||||
Reference in New Issue
Block a user