forked from zonoskar/Goodwe2PVoutput
-
Notifications
You must be signed in to change notification settings - Fork 0
/
iGoodwe.py
35 lines (26 loc) · 1.07 KB
/
iGoodwe.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
class iGoodwe :
#--------------------------------------------------------------------------
def __init__(self, url, login_url, station_id):
pass
#--------------------------------------------------------------------------
def subscribe_temperature( self, method):
#Subscribes method to the temperature value.
#
pass
#--------------------------------------------------------------------------
def initialize(self):
'''initialize'''
pass
#--------------------------------------------------------------------------
def is_online( self):
'''Is online?'''
return False
#--------------------------------------------------------------------------
def read_sample_data( self):
'''Read a data sample.'''
return None
#--------------------------------------------------------------------------
def terminate( self):
'''Read a data sample.'''
return None
#---------------- End of file ------------------------------------------------