File tree 4 files changed +26
-78
lines changed
4 files changed +26
-78
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -74,3 +74,21 @@ def getEToday(self):
74
74
75
75
def getHTotal (self ):
76
76
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
Original file line number Diff line number Diff line change 11
11
# For PVoutput
12
12
import urllib , urllib2
13
13
14
- import HexByteConversion
15
-
16
14
# Load the setting
17
15
mydir = os .path .dirname (os .path .abspath (__file__ ))
18
16
22
20
# Receive data with a socket
23
21
ip = config .get ('inverter' ,'ip' )
24
22
port = config .get ('inverter' ,'port' )
25
- inverter_string = HexByteConversion .HexToByte (config .get ('inverter' ,'inverter_string' ))
26
23
use_temp = config .getboolean ('inverter' ,'use_temperature' )
24
+ wifi_serial = config .getint ('inverter' , 'wifi_sn' )
27
25
28
26
mysql_enabled = config .getboolean ('mysql' , 'mysql_enabled' )
29
27
mysql_host = config .get ('mysql' ,'mysql_host' )
40
38
41
39
42
40
server_address = ((ip , port ))
43
- message = inverter_string
44
41
45
42
logger = logging .getLogger ('OmnikLogger' )
46
43
hdlr = logging .FileHandler (log_filename )
66
63
s = None
67
64
continue
68
65
break
66
+
69
67
if s is None :
70
68
if log_enabled :
71
69
logger .error ('could not open socket' )
72
70
sys .exit (1 )
73
- s .sendall (message )
71
+
72
+ s .sendall (InverterMsg .generate_string (wifi_serial ))
74
73
data = s .recv (1024 )
75
74
s .close ()
76
75
Original file line number Diff line number Diff line change 4
4
5
5
[inverter]
6
6
# IP address of your Omnik inverter
7
- ip = 192.168.1.10
7
+ ip = 192.168.1.10
8
8
# 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
11
12
# use temperature of inverter for pvoutput
12
13
use_temperature = true
13
14
14
-
15
15
[mysql]
16
16
# Enable for exporting to a mysql database
17
17
mysql_enabled = false
@@ -31,4 +31,3 @@ pvout_sysid = 12345
31
31
[log]
32
32
log_enabled = true
33
33
log_filename = omnik-export.log
34
-
You can’t perform that action at this time.
0 commit comments