Configuration works great and I'm able to switch my relays using web command "http://192.168.1.47/control?cmd=EXTGPIO,2,1", but I would like to control the Promini using rules .... and this doesn't work!
Something like this has no results:
Code: Select all
On swsala#porta do
if [swsala#porta] = 1
EXTGPIO, 2,0
EXTGPIO, 3,0
timerSet,1,60
endif
endon
On Rules#Timer=1 do
if [swsala#porta]=0
EXTGPIO, 2,1
EXTGPIO, 3,1
else
timerSet,1,60
endif
endon
Tks