Search found 3 matches

by harryn
Sunday 26 November 2017 23:09
Forum: LUA
Topic: Getting Data from Domintell to Domoticz
Replies: 4
Views: 1976

Re: Getting Data from Domintell to Domoticz

I have written the following code which can communicate with domintell and receive data

import socket
import time

UDP_IP = '192.168.1.40'
UDP_PORT = 30040
LOGIN = "LOGIN"
APPINFO= "APPINFO"
LOGOUT="LOGOUT"

sock = socket.socket(socket.AF_INET, # Internet
socket.SOCK_DGRAM) # UDP
print ...
by harryn
Sunday 26 November 2017 23:07
Forum: LUA
Topic: Reading Data from Efergy array json to domoticz
Replies: 0
Views: 758

Reading Data from Efergy array json to domoticz

I have an efergy engage system that reads the electricity usage of some of my devices in the house.
There are 5 meters. Each meter has a SID number. I am getting the following json data from the api but I do not know how to get the data into domoticz via dzvents. I ahve created 5 virtual sensors and ...
by harryn
Thursday 13 July 2017 17:49
Forum: LUA
Topic: Getting Data from Domintell to Domoticz
Replies: 4
Views: 1976

Getting Data from Domintell to Domoticz

I have no idea how to upload to domoticz the information from my house automation system (Domintell)
if I use packetsender (https://packetsender.com/) and I type LOGIN and send to the IP and port of the Domintell unit I get info on the devices and status of these devices.
What I do not know how to ...