haha, documentation! Give me a bit for that.
Sample RoomieScript
A basic RoomieScript looks like this:
<roomieScript>
<!-- Run this script before bed -->
<speak>
I will turn off the lights in 30 seconds
</speak>
<waitFor seconds="30" />
<zWave.powerOff module="Desk Light" />
<zWave.powerOff module="Bed Light" />
<waitUntil hours="7" minutes="15" />
<zWave.powerOn module="Desk Light" />
<zWave.powerOn module="Bed Light" />
<speak>
Wake up, sleepy-head!
</speak>
</roomieScript>