forked from vikt0rm/dbus-goecharger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dbus-goecharger.py
executable file
·297 lines (235 loc) · 11.3 KB
/
dbus-goecharger.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
#!/usr/bin/env python
# import normal packages
import platform
import logging
import sys
import os
import sys
if sys.version_info.major == 2:
import gobject
else:
from gi.repository import GLib as gobject
import sys
import time
import requests # for http GET
import configparser # for config/ini file
import json
# our own packages from victron
sys.path.insert(1, os.path.join(os.path.dirname(__file__), '/opt/victronenergy/dbus-systemcalc-py/ext/velib_python'))
from vedbus import VeDbusService
class DbusGoeChargerService:
def __init__(self, servicename, paths, productname='Daheimladen', connection='Daheimladen HTTP JSON service'):
config = self._getConfig()
deviceinstance = int(config['DEFAULT']['Deviceinstance'])
self._dbusservice = VeDbusService("{}.http_{:02d}".format(servicename, deviceinstance))
self._paths = paths
logging.debug("%s /DeviceInstance = %d" % (servicename, deviceinstance))
paths_wo_unit = [
'/Status', # value 'car' 1: charging station ready, no vehicle 2: vehicle loads 3: Waiting for vehicle 4: Charge finished, vehicle still connected
'/Mode'
]
#get data from Daheimladen
data = self._getGoeChargerData()
# Create the management objects, as specified in the ccgx dbus-api document
self._dbusservice.add_path('/Mgmt/ProcessName', __file__)
self._dbusservice.add_path('/Mgmt/ProcessVersion', 'Unkown version, and running on Python ' + platform.python_version())
self._dbusservice.add_path('/Mgmt/Connection', connection)
# Create the mandatory objects
self._dbusservice.add_path('/DeviceInstance', deviceinstance)
self._dbusservice.add_path('/ProductId', 0xFFFF) #
self._dbusservice.add_path('/ProductName', productname)
self._dbusservice.add_path('/CustomName', productname)
self._dbusservice.add_path('/FirmwareVersion', data['result']['version'])
self._dbusservice.add_path('/HardwareVersion', 2)
self._dbusservice.add_path('/Serial', data['result']['version'])
self._dbusservice.add_path('/Connected', 1)
self._dbusservice.add_path('/UpdateIndex', 0)
self._dbusservice.add_path('/Position', 0)
# add paths without units
for path in paths_wo_unit:
self._dbusservice.add_path(path, None)
# add path values to dbus
for path, settings in self._paths.items():
self._dbusservice.add_path(
path, settings['initial'], gettextcallback=settings['textformat'], writeable=True, ) #onchangecallback=self._handlechangedvalue)
# last update
self._lastUpdate = 0
# charging time in float
self._chargingTime = 0.0
# add _update function 'timer'
gobject.timeout_add(250, self._update) # pause 250ms before the next request
# add _signOfLife 'timer' to get feedback in log every 5minutes
gobject.timeout_add(self._getSignOfLifeInterval()*60*1000, self._signOfLife)
def _getConfig(self):
config = configparser.ConfigParser()
config.read("%s/config.ini" % (os.path.dirname(os.path.realpath(__file__))))
return config
def _getSignOfLifeInterval(self):
config = self._getConfig()
value = config['DEFAULT']['SignOfLifeLog']
if not value:
value = 0
return int(value)
def _getGoeChargerStatusUrl(self):
config = self._getConfig()
accessType = config['DEFAULT']['AccessType']
if accessType == 'OnPremise':
URL = "http://%s/api/state" % (config['ONPREMISE']['Host'])
else:
raise ValueError("AccessType %s is not supported" % (config['DEFAULT']['AccessType']))
return URL
def _getGoeChargerMqttPayloadUrl(self, parameter, value):
config = self._getConfig()
accessType = config['DEFAULT']['AccessType']
if accessType == 'OnPremise':
URL = "http://%s/api/state" % (config['ONPREMISE']['Host'], parameter, value)
else:
raise ValueError("AccessType %s is not supported" % (config['DEFAULT']['AccessType']))
return URL
def _setGoeChargerValue(self, parameter, value):
URL = self._getGoeChargerMqttPayloadUrl(parameter, str(value))
request_data = requests.get(url = URL)
# check for response
if not request_data:
raise ConnectionError("No response from Daheimladen - %s" % (URL))
json_data = request_data.json()
# check for Json
if not json_data:
raise ValueError("Converting response to JSON failed")
if json_data[parameter] == str(value):
return True
else:
logging.warning("Daheimladen parameter %s not set to %s" % (parameter, str(value)))
return False
def _getGoeChargerData(self):
URL = self._getGoeChargerStatusUrl()
request_data = requests.get(url = URL)
# check for response
if not request_data:
raise ConnectionError("No response from Daheimladen - %s" % (URL))
json_data = request_data.json()
# check for Json
if not json_data:
raise ValueError("Converting response to JSON failed")
return json_data
def _signOfLife(self):
logging.info("--- Start: sign of life ---")
logging.info("Last _update() call: %s" % (self._lastUpdate))
logging.info("Last '/Ac/Power': %s" % (self._dbusservice['/Ac/Power']))
logging.info("--- End: sign of life ---")
return True
def _update(self):
try:
#get data from Daheimladen
data = self._getGoeChargerData()
#send data to DBus
currentL1 = data['result']['loadpoints'][0]['chargeCurrents'][0]
currentL2 = data['result']['loadpoints'][0]['chargeCurrents'][1]
currentL3 = data['result']['loadpoints'][0]['chargeCurrents'][2]
powerL1 = (currentL1 * data['result']['loadpoints'][0]['chargeVoltages'][0])
powerL2 = (currentL2 * data['result']['loadpoints'][0]['chargeVoltages'][1])
powerL3 = (currentL3 * data['result']['loadpoints'][0]['chargeVoltages'][2])
self._dbusservice['/Ac/L3/Power'] = powerL1
self._dbusservice['/Ac/L2/Power'] = powerL2
self._dbusservice['/Ac/L1/Power'] = powerL3
self._dbusservice['/Ac/Power'] = (powerL1 + powerL2 + powerL3)
# self._dbusservice['/Ac/Voltage'] = int(data['nrg'][0])
self._dbusservice['/Current'] = max(currentL1, currentL2, currentL3)
self._dbusservice['/Ac/Energy/Forward'] = data['result']['loadpoints'][0]['chargedEnergy'] / 1000
# self._dbusservice['/StartStop'] = int(data['alw'])
self._dbusservice['/SetCurrent'] = int(data['result']['loadpoints'][0]['chargeCurrent'])
self._dbusservice['/MaxCurrent'] = int(data['result']['loadpoints'][0]['chargeCurrent'])
# update chargingTime, increment charge time only on active charging (2), reset when no car connected (1)
# timeDelta = time.time() - self._lastUpdate
# if int(data['car']) == 2 and self._lastUpdate > 0: # vehicle loads
# self._chargingTime += timeDelta
# elif int(data['car']) == 1: # charging station ready, no vehicle
# self._chargingTime = 0
self._dbusservice['/ChargingTime'] = int(data['result']['loadpoints'][0]['chargeDuration'] / 1000000000)
self._dbusservice['/Mode'] = 0 # Manual, no control
# self._dbusservice['/MCU/Temperature'] = int(data['tmp'])
#json_string = data
#json.loads(json_string)
true = True
false = False
# value 'car' 1: charging station ready, no vehicle 2: vehicle loads 3: Waiting for vehicle 4: Charge finished, vehicle still connected
status = 0
if data['result']['loadpoints'][0]['charging'] == True:
status = 2
elif data['result']['loadpoints'][0]['connected'] == True:
status = 1
elif data['result']['loadpoints'][0]['connected'] == False:
status = 0
self._dbusservice['/Status'] = status
#logging
logging.debug("Wallbox Consumption (/Ac/Power): %s" % (self._dbusservice['/Ac/Power']))
logging.debug("Wallbox Forward (/Ac/Energy/Forward): %s" % (self._dbusservice['/Ac/Energy/Forward']))
logging.debug("---")
# increment UpdateIndex - to show that new data is available
index = self._dbusservice['/UpdateIndex'] + 1 # increment index
if index > 255: # maximum value of the index
index = 0 # overflow from 255 to 0
self._dbusservice['/UpdateIndex'] = index
#update lastupdate vars
self._lastUpdate = time.time()
except Exception as e:
logging.critical('Error at %s', '_update', exc_info=e)
# return true, otherwise add_timeout will be removed from GObject - see docs http://library.isr.ist.utl.pt/docs/pygtk2reference/gobject-functions.html#function-gobject--timeout-add
return True
# def _handlechangedvalue(self, path, value):
# logging.info("someone else updated %s to %s" % (path, value))
# if path == '/SetCurrent':
# return self._setGoeChargerValue('amp', value)
# elif path == '/StartStop':
# return self._setGoeChargerValue('alw', value)
# elif path == '/MaxCurrent':
# return self._setGoeChargerValue('ama', value)
# else:
# logging.info("mapping for evcharger path %s does not exist" % (path))
# return False
def main():
#configure logging
logging.basicConfig( format='%(asctime)s,%(msecs)d %(name)s %(levelname)s %(message)s',
datefmt='%Y-%m-%d %H:%M:%S',
level=logging.CRITICAL,
handlers=[
logging.FileHandler("%s/current.log" % (os.path.dirname(os.path.realpath(__file__)))),
logging.StreamHandler()
])
try:
logging.info("Start")
from dbus.mainloop.glib import DBusGMainLoop
# Have a mainloop, so we can send/receive asynchronous calls to and from dbus
DBusGMainLoop(set_as_default=True)
#formatting
_kwh = lambda p, v: (str(round(v, 2)) + 'kWh')
_a = lambda p, v: (str(round(v, 1)) + 'A')
_w = lambda p, v: (str(round(v, 1)) + 'W')
_v = lambda p, v: (str(round(v, 1)) + 'V')
_degC = lambda p, v: (str(v) + '°C')
_s = lambda p, v: (str(v) + 's')
#start our main-service
pvac_output = DbusGoeChargerService(
servicename='com.victronenergy.evcharger',
paths={
'/Ac/Power': {'initial': 0, 'textformat': _w},
'/Ac/L1/Power': {'initial': 0, 'textformat': _w},
'/Ac/L2/Power': {'initial': 0, 'textformat': _w},
'/Ac/L3/Power': {'initial': 0, 'textformat': _w},
'/Ac/Energy/Forward': {'initial': 0, 'textformat': _kwh},
'/ChargingTime': {'initial': 0, 'textformat': _s},
'/Ac/Voltage': {'initial': 0, 'textformat': _v},
'/Current': {'initial': 0, 'textformat': _a},
'/SetCurrent': {'initial': 0, 'textformat': _a},
'/MaxCurrent': {'initial': 0, 'textformat': _a},
'/MCU/Temperature': {'initial': 0, 'textformat': _degC},
'/StartStop': {'initial': 0, 'textformat': lambda p, v: (str(v))}
}
)
logging.info('Connected to dbus, and switching over to gobject.MainLoop() (= event based)')
mainloop = gobject.MainLoop()
mainloop.run()
except Exception as e:
logging.critical('Error at %s', 'main', exc_info=e)
if __name__ == "__main__":
main()