Page 1 of 1

ESPEasy and the Witty Cloud Board

Posted: 10 Oct 2017, 19:56
by ronald
The Witty cloud board is another ESP8266 clone with a built in Fotosensor and RGB LED (as shown HERE)
I have one and flashed it with ESPEasy, but I can't control these built in devices. Anybody who has one up and running with ESPEasy and willing to share how to address the devices?

Re: ESPEasy and the Witty Cloud Board

Posted: 10 Oct 2017, 20:02
by ManS-H
Heya,

I used that board to control the window in my toilet room.
This is the rule what i used for it:
on wcraam-open do
gpio,15,1 // Rode Led aan
gpio,13,0 // Blauwe Led uit
gpio,12,0 // Groene Led uit
gpio,0,0 // relay on
timerSet 1,2 // 2 seconds timer
endon

on Rules#Timer=1 do
gpio,0,1 // relay off
endon

on wcraam-dicht do
gpio,15,0 // Rode led uit
gpio,13,0 // Blauwe led uit
gpio,12,1 // Groene Led aan
gpio,16,0 // relay on
timerSet 2,2 // 2 seconds timer
endon

on Rules#Timer=2 do
gpio,16,1 // relay off
endon

Re: ESPEasy and the Witty Cloud Board

Posted: 11 Oct 2017, 08:40
by ronald
Nice!
Thank you very much!