Skip to content

Commit 33f5917

Browse files
committed
Dynamic inverter request strings
The binairy string used for requesting data from the inverter is now generated from the wifi kit s/n. How this string is generated is explained in the function self.
1 parent dfac25a commit 33f5917

File tree

4 files changed

+26
-78
lines changed

4 files changed

+26
-78
lines changed

HexByteConversion.py

-68
This file was deleted.

InverterMsg.py

+18
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,21 @@ def getEToday(self):
7474

7575
def getHTotal(self):
7676
return int(self.__getLong(75, 1)) # Don't divide
77+
78+
def generate_string(ser):
79+
'''
80+
The request string is build from several parts. The first part is a
81+
fixed 4 char string; the second part is the reversed hex notation of
82+
the s/n twice; then again a fixed string of two chars; a checksum of
83+
the double s/n with an offset; and finally a fixed ending char.
84+
'''
85+
responseString = '\x68\x02\x40\x30';
86+
87+
doublehex = hex(ser)[2:]*2
88+
hexlist = [ doublehex[i:i+2].decode('hex') for i in
89+
reversed(range(0, len(doublehex), 2))]
90+
91+
cs_count = 115 + sum([ ord(c) for c in hexlist])
92+
cs = hex(cs_count)[-2:].decode('hex')
93+
responseString += ''.join(hexlist) + '\x01\x00'+cs+'\x16'
94+
return responseString

OmnikExport.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
# For PVoutput
1212
import urllib, urllib2
1313

14-
import HexByteConversion
15-
1614
# Load the setting
1715
mydir = os.path.dirname(os.path.abspath(__file__))
1816

@@ -22,8 +20,8 @@
2220
# Receive data with a socket
2321
ip = config.get('inverter','ip')
2422
port = config.get('inverter','port')
25-
inverter_string = HexByteConversion.HexToByte(config.get('inverter','inverter_string'))
2623
use_temp = config.getboolean('inverter','use_temperature')
24+
wifi_serial = config.getint('inverter', 'wifi_sn')
2725

2826
mysql_enabled = config.getboolean('mysql', 'mysql_enabled')
2927
mysql_host = config.get('mysql','mysql_host')
@@ -40,7 +38,6 @@
4038

4139

4240
server_address = ((ip, port))
43-
message = inverter_string
4441

4542
logger = logging.getLogger('OmnikLogger')
4643
hdlr = logging.FileHandler(log_filename)
@@ -66,11 +63,13 @@
6663
s = None
6764
continue
6865
break
66+
6967
if s is None:
7068
if log_enabled:
7169
logger.error('could not open socket')
7270
sys.exit(1)
73-
s.sendall(message)
71+
72+
s.sendall(InverterMsg.generate_string(wifi_serial))
7473
data = s.recv(1024)
7574
s.close()
7675

config-org.cfg

+4-5
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44

55
[inverter]
66
# IP address of your Omnik inverter
7-
ip = 192.168.1.10
7+
ip = 192.168.1.10
88
# Default for a Omnik with Wifi module
9-
port = 8899
10-
inverter_string = 68 02 40 30 b7 54 e6 23 b7 54 e6 23 01 00 44 16
9+
port = 8899
10+
# S/N of the wifi kit
11+
wifi_sn = 602123456
1112
#use temperature of inverter for pvoutput
1213
use_temperature = true
1314

14-
1515
[mysql]
1616
# Enable for exporting to a mysql database
1717
mysql_enabled = false
@@ -31,4 +31,3 @@ pvout_sysid = 12345
3131
[log]
3232
log_enabled = true
3333
log_filename = omnik-export.log
34-

0 commit comments

Comments
 (0)