This is my bot which control my house...

https://youtu.be/aRxWw9QsSRo

Dom.

Hi, thank you.

No i don't used domoticz.

My system is based on modules which communicate on CAN bus. One raspberry make interface between CAN bus and Lan protocol. A HTTP API control every thing.

So with InMoov, it is very simple to send HTTP commande like this :

 

url = domoServer + 'api.php?lieu=' + str(val1) + ',' + str(val2) + '&val=' + str(val3)

req = urllib2.Request(url)

try:
   handle = urllib2.urlopen(req,timeout=10)
   answerIsOk = True
except IOError:
   talk("Domotic server error")

Dom.