SMA Sunny Boy 1.5
Moderator: leecollings
-
- Posts: 40
- Joined: Wednesday 10 June 2020 9:20
- Target OS: NAS (Synology & others)
- Domoticz version:
- Contact:
Re: SMA Sunny Boy 1.5
It works!!!!!!
After an second time reboot it worked!
Thanks to your script!
Thanks
After an second time reboot it worked!
Thanks to your script!
Thanks
-
- Posts: 40
- Joined: Wednesday 10 June 2020 9:20
- Target OS: NAS (Synology & others)
- Domoticz version:
- Contact:
Re: SMA Sunny Boy 1.5
A little side note:
After i installed this has 'hardware' Domoticz keeps giving problems.
The GUI is only fir a few minutes accesible and then not anymore.
Via SSH (putty) i have to restart then en then again.
Also lot of messages that the command couldn't be sent to the (433mhz) devices.
Agter setting the SMA setting 'active' to OFF al the problems are gone.
So there's maybe an bug in my script.
I will play withe the setting first.
Has DEBUG to be on TRUE or FALSE?
Interval is at 1 minute.
Any ideas?
After i installed this has 'hardware' Domoticz keeps giving problems.
The GUI is only fir a few minutes accesible and then not anymore.
Via SSH (putty) i have to restart then en then again.
Also lot of messages that the command couldn't be sent to the (433mhz) devices.
Agter setting the SMA setting 'active' to OFF al the problems are gone.
So there's maybe an bug in my script.
I will play withe the setting first.
Has DEBUG to be on TRUE or FALSE?
Interval is at 1 minute.
Any ideas?
-
- Posts: 31
- Joined: Friday 08 February 2019 8:35
- Target OS: Raspberry Pi / ODroid
- Domoticz version: 4.9700
- Location: France
- Contact:
Re: SMA Sunny Boy 1.5
Hello,
Does someone knows if it's possible to change the query interval to 1 second to be more precise ?
Thanks !
Does someone knows if it's possible to change the query interval to 1 second to be more precise ?
Thanks !
-
- Posts: 20
- Joined: Thursday 19 March 2020 22:30
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: SMA Sunny Boy 1.5
Are you using my version? Interval can be set to 5 seconds.
https://github.com/rklomp/Domoticz-SMA-SunnyBoy
https://github.com/rklomp/Domoticz-SMA-SunnyBoy
-
- Posts: 31
- Joined: Friday 08 February 2019 8:35
- Target OS: Raspberry Pi / ODroid
- Domoticz version: 4.9700
- Location: France
- Contact:
Re: SMA Sunny Boy 1.5
Yes, I use yours and I have already set it to 5 seconds.rklomp wrote: ↑Tuesday 15 September 2020 12:44 Are you using my version? Interval can be set to 5 seconds.
https://github.com/rklomp/Domoticz-SMA-SunnyBoy
1 second would be more accurate for regulation purpose.
-
- Posts: 10
- Joined: Sunday 29 March 2020 17:33
- Target OS: Raspberry Pi / ODroid
- Domoticz version: 2020.1
- Location: Belgium, close to Brussels
- Contact:
Re: SMA Sunny Boy 1.5
Hello All,
Please let me share my experience.
I have a problem already described above: only 2 devices are created and not 3, and the device with the daily counter is messed up with the instant production.
In detail:
I copied your script (copy/paste) from /github.com/merlot-dev/Domoticz-SMA-SunnyBoy/
restarted Dz service,
added successfully the hardware, and it has created 2 devices (not 3) which showed always zero.
I had to edit the 3 occurrences of '012F-730B00E6' and replace with values reported by my inverter(0156-76BCFF**)
How to catch the values without wireshark ?
First launch this command:
curl -H "Content-Type: application/json, Accept-Charset: UTF-8" -X POST -d '{"pass" : "password", "right" : "usr"}' http://pv/dyn/login.json
You get a session ID: {"result":{"sid":"NHIsYKZaBmBa7KJG"}}
Quickly send the second command on one line:
curl -H "Content-Type: application/json, Accept-Charset: UTF-8" -X POST -d '{"destDev":[],"keys":["6400_00260100","6400_00262200","6100_40263F00"]}' http://pv/dyn/getValues.json?sid=NHIsYKZaBmBa7KJG
and you get the JSON result:
{"result":{"0156-76BCFF**":{"6400_00260100":{"1":[{"val":12020721}]},"6400_00262200":{"1":[{"val":17570}]},"6100_40263F00":{"1":[{"val":831}]}}}}
I interpret the results as this:
12020 total production, 17.5 production of today, 831 W instant production
and I have my system number 0156-76BCFF** to transcript in the plugin script.
Now the problem with the display:
The hardware has created 2 devices: (don't be confused with SD1a, it was already there prior) but in the utility the values shown are the instant values ?? Here is the web page of the inverter: I cannot pinpoint the mistake ... any help is welcome !
Please let me share my experience.
I have a problem already described above: only 2 devices are created and not 3, and the device with the daily counter is messed up with the instant production.
In detail:
I copied your script (copy/paste) from /github.com/merlot-dev/Domoticz-SMA-SunnyBoy/
restarted Dz service,
added successfully the hardware, and it has created 2 devices (not 3) which showed always zero.
I had to edit the 3 occurrences of '012F-730B00E6' and replace with values reported by my inverter(0156-76BCFF**)
How to catch the values without wireshark ?
First launch this command:
curl -H "Content-Type: application/json, Accept-Charset: UTF-8" -X POST -d '{"pass" : "password", "right" : "usr"}' http://pv/dyn/login.json
You get a session ID: {"result":{"sid":"NHIsYKZaBmBa7KJG"}}
Quickly send the second command on one line:
curl -H "Content-Type: application/json, Accept-Charset: UTF-8" -X POST -d '{"destDev":[],"keys":["6400_00260100","6400_00262200","6100_40263F00"]}' http://pv/dyn/getValues.json?sid=NHIsYKZaBmBa7KJG
and you get the JSON result:
{"result":{"0156-76BCFF**":{"6400_00260100":{"1":[{"val":12020721}]},"6400_00262200":{"1":[{"val":17570}]},"6100_40263F00":{"1":[{"val":831}]}}}}
I interpret the results as this:
12020 total production, 17.5 production of today, 831 W instant production
and I have my system number 0156-76BCFF** to transcript in the plugin script.
Now the problem with the display:
The hardware has created 2 devices: (don't be confused with SD1a, it was already there prior) but in the utility the values shown are the instant values ?? Here is the web page of the inverter: I cannot pinpoint the mistake ... any help is welcome !
Domoticz on Rpi 3B, PiZigate, several Sonoff/ESPEasy/Tasmota, IPX800, several Zigbee things
-
- Posts: 20
- Joined: Thursday 19 March 2020 22:30
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: SMA Sunny Boy 1.5
Please try my improved version from https://github.com/rklomp/Domoticz-SMA-SunnyBoy
-
- Posts: 10
- Joined: Sunday 29 March 2020 17:33
- Target OS: Raspberry Pi / ODroid
- Domoticz version: 2020.1
- Location: Belgium, close to Brussels
- Contact:
Re: SMA Sunny Boy 1.5
@rklomp: Here is the feedback
deleted hardware (the 2 device have gone too)
stopped Dz service
replaced the script, no modification brought
Start Dz service
Added hardware, configure IP and password, run every 3 minutes
Found that only 2 devices are created
Added them with the green button
Here is the Devices pane: Here is the Utility pane: Zero is probably valid. It is now dark.
But the devices pane shows an invalid value, and the total production of the day cannot be found anywhere.
__
Dz Version 2020.1 (March 22th 2020). I will never ever re-enable auto-update since it broke and required a full Debian fresh install.
Running on Rpi 3B.
deleted hardware (the 2 device have gone too)
stopped Dz service
replaced the script, no modification brought
Start Dz service
Added hardware, configure IP and password, run every 3 minutes
Found that only 2 devices are created
Added them with the green button
Here is the Devices pane: Here is the Utility pane: Zero is probably valid. It is now dark.
But the devices pane shows an invalid value, and the total production of the day cannot be found anywhere.
__
Dz Version 2020.1 (March 22th 2020). I will never ever re-enable auto-update since it broke and required a full Debian fresh install.
Running on Rpi 3B.
Domoticz on Rpi 3B, PiZigate, several Sonoff/ESPEasy/Tasmota, IPX800, several Zigbee things
-
- Posts: 20
- Joined: Thursday 19 March 2020 22:30
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: SMA Sunny Boy 1.5
That looks correct. The total production on the day will probably be shown tomorrow as soon as some power has been generated. It can also be found in de log view then.
-
- Posts: 10
- Joined: Sunday 29 March 2020 17:33
- Target OS: Raspberry Pi / ODroid
- Domoticz version: 2020.1
- Location: Belgium, close to Brussels
- Contact:
Re: SMA Sunny Boy 1.5
Thanks, I'll check tomorrow.
Greetings from Brussels
Greetings from Brussels
Domoticz on Rpi 3B, PiZigate, several Sonoff/ESPEasy/Tasmota, IPX800, several Zigbee things
-
- Posts: 10
- Joined: Sunday 29 March 2020 17:33
- Target OS: Raspberry Pi / ODroid
- Domoticz version: 2020.1
- Location: Belgium, close to Brussels
- Contact:
Re: SMA Sunny Boy 1.5
Great ! it works fine !
FrédéricDomoticz on Rpi 3B, PiZigate, several Sonoff/ESPEasy/Tasmota, IPX800, several Zigbee things
-
- Posts: 12
- Joined: Tuesday 27 October 2020 9:32
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: SMA Sunny Boy 1.5
Hi All,
I have 2 SMA inverters, a SunnyBoy 1.5 and a TriPower 6.0. The SunnyBoy uses HTTP and the TriPower HTTPS.
The script works flawless for me!
Thank you!
I have 2 SMA inverters, a SunnyBoy 1.5 and a TriPower 6.0. The SunnyBoy uses HTTP and the TriPower HTTPS.
The script works flawless for me!
Thank you!
-
- Posts: 9
- Joined: Saturday 21 November 2020 17:21
- Target OS: NAS (Synology & others)
- Domoticz version:
- Contact:
Re: SMA Sunny Boy 1.5
Hi there i'm trying to read my sunny boy with domosticz installed on my synology.
Could you help me with the neccesary steps?
TX!
Thomas
Could you help me with the neccesary steps?
TX!
Thomas
svdhaar wrote: ↑Friday 10 April 2020 12:29 jeeeej, hardware and devices are visable.
one question about this error.
In the hardware config i specified the ipadres. It is an internal adres, so no https is configured.
It seems that port 443 is automatically added?
2020-04-10 12:25:05.084 (SMA omvormer) Error accessing SMA inverter on 192.168.0.200; HTTPSConnectionPool(host='192.168.0.200', port=443): Max retries exceeded with url: /dyn/login.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x4850ac50>: Failed to establish a new connection: [Errno 111]
-
- Posts: 10
- Joined: Sunday 29 March 2020 17:33
- Target OS: Raspberry Pi / ODroid
- Domoticz version: 2020.1
- Location: Belgium, close to Brussels
- Contact:
Re: SMA Sunny Boy 1.5
Hello, we would gladly help, please explain what you have done, and what you have not done, from the steps described in our previous posts.
Domoticz on Rpi 3B, PiZigate, several Sonoff/ESPEasy/Tasmota, IPX800, several Zigbee things
-
- Posts: 36
- Joined: Friday 10 April 2020 7:01
- Target OS: NAS (Synology & others)
- Domoticz version:
- Contact:
Re: SMA Sunny Boy 1.5
Which step are you on?artstam wrote: ↑Friday 27 November 2020 17:26 Hi there i'm trying to read my sunny boy with domosticz installed on my synology.
Could you help me with the neccesary steps?
TX!
Thomas
svdhaar wrote: ↑Friday 10 April 2020 12:29 jeeeej, hardware and devices are visable.
one question about this error.
In the hardware config i specified the ipadres. It is an internal adres, so no https is configured.
It seems that port 443 is automatically added?
2020-04-10 12:25:05.084 (SMA omvormer) Error accessing SMA inverter on 192.168.0.200; HTTPSConnectionPool(host='192.168.0.200', port=443): Max retries exceeded with url: /dyn/login.json (Caused by NewConnectionError('<urllib3.connection.VerifiedHTTPSConnection object at 0x4850ac50>: Failed to establish a new connection: [Errno 111]
-
- Posts: 9
- Joined: Saturday 21 November 2020 17:21
- Target OS: NAS (Synology & others)
- Domoticz version:
- Contact:
Re: SMA Sunny Boy 1.5
i'm still at the beginning. One of the problems is that my synology is a bit old (211+). I managed to install Domoticz on my computer (domoticz_88f6282-6.2_3.0.9483-7.spk) from Jadahl.com. I can read my power and gas consumption from the P1 port. I first tried an virtual interface with https://github.com/sincze/Domoticz/blob ... a-inverter, but i could not get that to work.
Domoticz:
Version: 3.9483
Build Hash: a74f7c4-modified
Compile Date: 2018-05-24 11:42:36
dzVents Version: 2.4.5
Python Version: None
I am not sure if i can use the github script in this thread.
Sorry that i am pretty new with linux, synology and python scripts!
I much appreciate any help i can get,
Thomas
Domoticz:
Version: 3.9483
Build Hash: a74f7c4-modified
Compile Date: 2018-05-24 11:42:36
dzVents Version: 2.4.5
Python Version: None
I am not sure if i can use the github script in this thread.
Sorry that i am pretty new with linux, synology and python scripts!
I much appreciate any help i can get,
Thomas
-
- Posts: 36
- Joined: Friday 10 April 2020 7:01
- Target OS: NAS (Synology & others)
- Domoticz version:
- Contact:
Re: SMA Sunny Boy 1.5
I used this script from rklomp: https://github.com/rklomp/Domoticz-SMA-SunnyBoy
At first you will need to install the necessary components on your synology: Python 3.7 & Git.
When the installation is done, just follow the instruction which rklomp described:
Assuming that domoticz directory is installed in your home directory.
cd ~/domoticz/plugins
git clone https://github.com/rklomp/Domoticz-SMA-SunnyBoy
# restart domoticz:
sudo systemctl restart domoticz
In the web UI, navigate to the Hardware page. In the hardware dropdown there will be an entry called "SMA Sunny Boy".
At first you will need to install the necessary components on your synology: Python 3.7 & Git.
When the installation is done, just follow the instruction which rklomp described:
Assuming that domoticz directory is installed in your home directory.
cd ~/domoticz/plugins
git clone https://github.com/rklomp/Domoticz-SMA-SunnyBoy
# restart domoticz:
sudo systemctl restart domoticz
In the web UI, navigate to the Hardware page. In the hardware dropdown there will be an entry called "SMA Sunny Boy".
-
- Posts: 9
- Joined: Saturday 21 November 2020 17:21
- Target OS: NAS (Synology & others)
- Domoticz version:
- Contact:
Re: SMA Sunny Boy 1.5
I installed python & Git and followed the instructions.
- i installed it in /usr/local/domoticz/plugins
- restart is not working (systemctl not recognised)
- i did a restart in domoticz
- in the hardware section there is no SMA sunny Boy
I probably did something wrong!
- i installed it in /usr/local/domoticz/plugins
- restart is not working (systemctl not recognised)
- i did a restart in domoticz
- in the hardware section there is no SMA sunny Boy
I probably did something wrong!
-
- Posts: 36
- Joined: Friday 10 April 2020 7:01
- Target OS: NAS (Synology & others)
- Domoticz version:
- Contact:
Re: SMA Sunny Boy 1.5
No errors during the installation of git, python and or the project from Ronald?
Strange.. are you sure you rebooted Domoticz?
You can force a reboot by stopping the app proces via synology package center. Of just reboot you syno.
Installing the project is mostly the simple part
.
After rebooting the new hardware should be visible.
Hardware device name should be: sma sunnyboy solar inverter plugin
Strange.. are you sure you rebooted Domoticz?
You can force a reboot by stopping the app proces via synology package center. Of just reboot you syno.
Installing the project is mostly the simple part
After rebooting the new hardware should be visible.
Hardware device name should be: sma sunnyboy solar inverter plugin
-
- Posts: 12
- Joined: Saturday 29 August 2020 14:03
- Target OS: NAS (Synology & others)
- Domoticz version:
- Contact:
Re: SMA Sunny Boy 1.5
I managed to install this plugin thanks to the previous posts in this topic.
It took some searching to get pip3 installed and I think it worked out correctly in the end.
I was able to add the hardware and 2 devices but I get errors in the log.
Below you see the log (with debugging on).
I suspect that "No cipher can be selected" is the cause but I cannot find a cause or solution.
It took some searching to get pip3 installed and I think it worked out correctly in the end.
I was able to add the hardware and 2 devices but I get errors in the log.
Below you see the log (with debugging on).
I suspect that "No cipher can be selected" is the cause but I cannot find a cause or solution.
Code: Select all
2020-11-29 19:59:17.675 Status: (SMA Sunny Boy Solar Inverter) Started.
2020-11-29 19:59:18.507 (SMA Sunny Boy Solar Inverter) Debug logging mask set to: PYTHON PLUGIN QUEUE IMAGE DEVICE CONNECTION MESSAGE ALL
2020-11-29 19:59:18.507 (SMA Sunny Boy Solar Inverter) 'HardwareID':'7'
2020-11-29 19:59:18.507 (SMA Sunny Boy Solar Inverter) 'HomeFolder':'/usr/local/domoticz/var/plugins/SMA Sunny Boy Solar Inverter/'
2020-11-29 19:59:18.507 (SMA Sunny Boy Solar Inverter) 'StartupFolder':'/usr/local/domoticz/'
2020-11-29 19:59:18.507 (SMA Sunny Boy Solar Inverter) 'UserDataFolder':'/usr/local/domoticz/var/'
2020-11-29 19:59:18.507 (SMA Sunny Boy Solar Inverter) 'Database':'/usr/local/domoticz/var/domoticz.db'
2020-11-29 19:59:18.507 (SMA Sunny Boy Solar Inverter) 'Language':'en'
2020-11-29 19:59:18.507 (SMA Sunny Boy Solar Inverter) 'Version':'1.0.4'
2020-11-29 19:59:18.507 (SMA Sunny Boy Solar Inverter) 'Author':'rklomp'
2020-11-29 19:59:18.507 (SMA Sunny Boy Solar Inverter) 'Name':'SMA Sunny Boy Solar Inverter'
2020-11-29 19:59:18.507 (SMA Sunny Boy Solar Inverter) 'Address':'192.168.0.4'
2020-11-29 19:59:18.507 (SMA Sunny Boy Solar Inverter) 'Port':'0'
2020-11-29 19:59:18.507 (SMA Sunny Boy Solar Inverter) 'Password':'xxxx'
2020-11-29 19:59:18.507 (SMA Sunny Boy Solar Inverter) 'Key':'SMASunnyBoy'
2020-11-29 19:59:18.507 (SMA Sunny Boy Solar Inverter) 'Mode1':'https'
2020-11-29 19:59:18.507 (SMA Sunny Boy Solar Inverter) 'Mode3':'12'
2020-11-29 19:59:18.508 (SMA Sunny Boy Solar Inverter) 'Mode6':'Debug'
2020-11-29 19:59:18.508 (SMA Sunny Boy Solar Inverter) 'DomoticzVersion':'2020.2 (build 12227)'
2020-11-29 19:59:18.508 (SMA Sunny Boy Solar Inverter) 'DomoticzHash':'36016cd13-modified'
2020-11-29 19:59:18.508 (SMA Sunny Boy Solar Inverter) 'DomoticzBuildTime':'2020-07-14 15:33:21'
2020-11-29 19:59:18.508 (SMA Sunny Boy Solar Inverter) Device count: 2
2020-11-29 19:59:18.508 (SMA Sunny Boy Solar Inverter) Device: 1 - ID: 183, Name: 'SMA Sunny Boy Solar Inverter - PV Generation', nValue: 0, sValue: ''
2020-11-29 19:59:18.508 (SMA Sunny Boy Solar Inverter) Device ID: '183'
2020-11-29 19:59:18.508 (SMA Sunny Boy Solar Inverter) Device Name: 'SMA Sunny Boy Solar Inverter - PV Generation'
2020-11-29 19:59:18.508 (SMA Sunny Boy Solar Inverter) Device nValue: 0
2020-11-29 19:59:18.508 (SMA Sunny Boy Solar Inverter) Device sValue: ''
2020-11-29 19:59:18.508 (SMA Sunny Boy Solar Inverter) Device LastLevel: 0
2020-11-29 19:59:18.508 (SMA Sunny Boy Solar Inverter) Device: 2 - ID: 184, Name: 'SMA Sunny Boy Solar Inverter - kWh total', nValue: 0, sValue: ''
2020-11-29 19:59:18.508 (SMA Sunny Boy Solar Inverter) Device ID: '184'
2020-11-29 19:59:18.508 (SMA Sunny Boy Solar Inverter) Device Name: 'SMA Sunny Boy Solar Inverter - kWh total'
2020-11-29 19:59:18.508 (SMA Sunny Boy Solar Inverter) Device nValue: 0
2020-11-29 19:59:18.508 (SMA Sunny Boy Solar Inverter) Device sValue: ''
2020-11-29 19:59:18.508 (SMA Sunny Boy Solar Inverter) Device LastLevel: 0
2020-11-29 19:59:18.509 (SMA Sunny Boy Solar Inverter) Base URL is set to https://192.168.0.4/dyn
2020-11-29 19:59:18.526 (SMA Sunny Boy Solar Inverter) Error accessing SMA inverter on 192.168.0.4; HTTPSConnectionPool(host='192.168.0.4', port=443): Max retries exceeded with url: /dyn/login.json (Caused by SSLError(SSLError('No cipher can be selected.')))
2020-11-29 19:59:18.526 (SMA Sunny Boy Solar Inverter) Pushing 'PollIntervalDirective' on to queue
2020-11-29 19:59:18.526 (SMA Sunny Boy Solar Inverter) Processing 'PollIntervalDirective' message
2020-11-29 19:59:18.526 (SMA Sunny Boy Solar Inverter) Heartbeat interval set to: 5.
2020-11-29 19:59:18.504 Status: (SMA Sunny Boy Solar Inverter) Entering work loop.
2020-11-29 19:59:18.504 Status: (SMA Sunny Boy Solar Inverter) Initialized version 1.0.4, author 'rklomp'
2020-11-29 19:59:28.531 (SMA Sunny Boy Solar Inverter) Pushing 'onHeartbeatCallback' on to queue
2020-11-29 19:59:28.558 (SMA Sunny Boy Solar Inverter) Processing 'onHeartbeatCallback' message
2020-11-29 19:59:28.559 (SMA Sunny Boy Solar Inverter) Calling message handler 'onHeartbeat'.
2020-11-29 19:59:28.559 (SMA Sunny Boy Solar Inverter) onHeartbeat called 0
2020-11-29 19:59:28.569 (SMA Sunny Boy Solar Inverter) Error accessing SMA inverter on 192.168.0.4; HTTPSConnectionPool(host='192.168.0.4', port=443): Max retries exceeded with url: /dyn/login.json (Caused by SSLError(SSLError('No cipher can be selected.')))
2020-11-29 19:59:28.580 (SMA Sunny Boy Solar Inverter) No data from SMA inverter on 192.168.0.4; HTTPSConnectionPool(host='192.168.0.4', port=443): Max retries exceeded with url: /dyn/getValues.json?sid=None (Caused by SSLError(SSLError('No cipher can be selected.')))
2020-11-29 19:59:28.580 (SMA Sunny Boy Solar Inverter) Previous attempt failed, trying new login...
2020-11-29 19:59:28.591 (SMA Sunny Boy Solar Inverter) Error accessing SMA inverter on 192.168.0.4; HTTPSConnectionPool(host='192.168.0.4', port=443): Max retries exceeded with url: /dyn/login.json (Caused by SSLError(SSLError('No cipher can be selected.')))
2020-11-29 19:59:28.602 (SMA Sunny Boy Solar Inverter) No data from SMA inverter on 192.168.0.4; HTTPSConnectionPool(host='192.168.0.4', port=443): Max retries exceeded with url: /dyn/getValues.json?sid=None (Caused by SSLError(SSLError('No cipher can be selected.')))
2020-11-29 19:59:28.602 Error: (SMA Sunny Boy Solar Inverter) Failed to retrieve data from 192.168.0.4, cancelling...
2020-11-29 19:59:33.541 (SMA Sunny Boy Solar Inverter) Pushing 'onHeartbeatCallback' on to queue
2020-11-29 19:59:33.551 (SMA Sunny Boy Solar Inverter) Processing 'onHeartbeatCallback' message
2020-11-29 19:59:33.619 (SMA Sunny Boy Solar Inverter) Calling message handler 'onHeartbeat'.
2020-11-29 19:59:33.620 (SMA Sunny Boy Solar Inverter) onHeartbeat called 1
2020-11-29 19:59:38.552 (SMA Sunny Boy Solar Inverter) Pushing 'onHeartbeatCallback' on to queue
2020-11-29 19:59:38.570 (SMA Sunny Boy Solar Inverter) Processing 'onHeartbeatCallback' message
2020-11-29 19:59:38.739 (SMA Sunny Boy Solar Inverter) Calling message handler 'onHeartbeat'.
2020-11-29 19:59:38.739 (SMA Sunny Boy Solar Inverter) onHeartbeat called 2
2020-11-29 19:59:43.562 (SMA Sunny Boy Solar Inverter) Pushing 'onHeartbeatCallback' on to queue
2020-11-29 19:59:43.585 (SMA Sunny Boy Solar Inverter) Processing 'onHeartbeatCallback' message
2020-11-29 19:59:43.586 (SMA Sunny Boy Solar Inverter) Calling message handler 'onHeartbeat'.
2020-11-29 19:59:43.586 (SMA Sunny Boy Solar Inverter) onHeartbeat called 3
2020-11-29 19:59:48.573 (SMA Sunny Boy Solar Inverter) Pushing 'onHeartbeatCallback' on to queue
2020-11-29 19:59:48.585 (SMA Sunny Boy Solar Inverter) Processing 'onHeartbeatCallback' message
2020-11-29 19:59:48.586 (SMA Sunny Boy Solar Inverter) Calling message handler 'onHeartbeat'.
2020-11-29 19:59:48.586 (SMA Sunny Boy Solar Inverter) onHeartbeat called 4
2020-11-29 19:59:53.583 (SMA Sunny Boy Solar Inverter) Pushing 'onHeartbeatCallback' on to queue
2020-11-29 19:59:53.588 (SMA Sunny Boy Solar Inverter) Processing 'onHeartbeatCallback' message
2020-11-29 19:59:53.589 (SMA Sunny Boy Solar Inverter) Calling message handler 'onHeartbeat'.
2020-11-29 19:59:53.589 (SMA Sunny Boy Solar Inverter) onHeartbeat called 5
2020-11-29 19:59:58.593 (SMA Sunny Boy Solar Inverter) Pushing 'onHeartbeatCallback' on to queue
2020-11-29 19:59:58.640 (SMA Sunny Boy Solar Inverter) Processing 'onHeartbeatCallback' message
2020-11-29 19:59:58.674 (SMA Sunny Boy Solar Inverter) Calling message handler 'onHeartbeat'.
2020-11-29 19:59:58.674 (SMA Sunny Boy Solar Inverter) onHeartbeat called 6
2020-11-29 20:00:03.604 (SMA Sunny Boy Solar Inverter) Pushing 'onHeartbeatCallback' on to queue
2020-11-29 20:00:03.623 (SMA Sunny Boy Solar Inverter) Processing 'onHeartbeatCallback' message
2020-11-29 20:00:03.624 (SMA Sunny Boy Solar Inverter) Calling message handler 'onHeartbeat'.
2020-11-29 20:00:03.624 (SMA Sunny Boy Solar Inverter) onHeartbeat called 7
2020-11-29 20:00:08.614 (SMA Sunny Boy Solar Inverter) Pushing 'onHeartbeatCallback' on to queue
2020-11-29 20:00:08.622 (SMA Sunny Boy Solar Inverter) Processing 'onHeartbeatCallback' message
2020-11-29 20:00:08.622 (SMA Sunny Boy Solar Inverter) Calling message handler 'onHeartbeat'.
2020-11-29 20:00:08.623 (SMA Sunny Boy Solar Inverter) onHeartbeat called 8
2020-11-29 20:00:13.624 (SMA Sunny Boy Solar Inverter) Pushing 'onHeartbeatCallback' on to queue
2020-11-29 20:00:13.673 (SMA Sunny Boy Solar Inverter) Processing 'onHeartbeatCallback' message
2020-11-29 20:00:13.707 (SMA Sunny Boy Solar Inverter) Calling message handler 'onHeartbeat'.
2020-11-29 20:00:13.707 (SMA Sunny Boy Solar Inverter) onHeartbeat called 9
2020-11-29 20:00:18.634 (SMA Sunny Boy Solar Inverter) Pushing 'onHeartbeatCallback' on to queue
2020-11-29 20:00:18.657 (SMA Sunny Boy Solar Inverter) Processing 'onHeartbeatCallback' message
2020-11-29 20:00:18.657 (SMA Sunny Boy Solar Inverter) Calling message handler 'onHeartbeat'.
2020-11-29 20:00:18.658 (SMA Sunny Boy Solar Inverter) onHeartbeat called 10
2020-11-29 20:00:23.644 (SMA Sunny Boy Solar Inverter) Pushing 'onHeartbeatCallback' on to queue
2020-11-29 20:00:23.656 (SMA Sunny Boy Solar Inverter) Processing 'onHeartbeatCallback' message
2020-11-29 20:00:23.656 (SMA Sunny Boy Solar Inverter) Calling message handler 'onHeartbeat'.
2020-11-29 20:00:23.657 (SMA Sunny Boy Solar Inverter) onHeartbeat called 11
2020-11-29 20:00:28.654 (SMA Sunny Boy Solar Inverter) Pushing 'onHeartbeatCallback' on to queue
2020-11-29 20:00:28.658 (SMA Sunny Boy Solar Inverter) Processing 'onHeartbeatCallback' message
2020-11-29 20:00:28.745 (SMA Sunny Boy Solar Inverter) Calling message handler 'onHeartbeat'.
2020-11-29 20:00:28.745 (SMA Sunny Boy Solar Inverter) onHeartbeat called 0
2020-11-29 20:00:28.755 (SMA Sunny Boy Solar Inverter) Error accessing SMA inverter on 192.168.0.4; HTTPSConnectionPool(host='192.168.0.4', port=443): Max retries exceeded with url: /dyn/login.json (Caused by SSLError(SSLError('No cipher can be selected.')))
2020-11-29 20:00:28.766 (SMA Sunny Boy Solar Inverter) No data from SMA inverter on 192.168.0.4; HTTPSConnectionPool(host='192.168.0.4', port=443): Max retries exceeded with url: /dyn/getValues.json?sid=None (Caused by SSLError(SSLError('No cipher can be selected.')))
2020-11-29 20:00:28.767 (SMA Sunny Boy Solar Inverter) Previous attempt failed, trying new login...
2020-11-29 20:00:28.777 (SMA Sunny Boy Solar Inverter) Error accessing SMA inverter on 192.168.0.4; HTTPSConnectionPool(host='192.168.0.4', port=443): Max retries exceeded with url: /dyn/login.json (Caused by SSLError(SSLError('No cipher can be selected.')))
2020-11-29 20:00:28.790 (SMA Sunny Boy Solar Inverter) No data from SMA inverter on 192.168.0.4; HTTPSConnectionPool(host='192.168.0.4', port=443): Max retries exceeded with url: /dyn/getValues.json?sid=None (Caused by SSLError(SSLError('No cipher can be selected.')))
2020-11-29 20:00:28.791 Error: (SMA Sunny Boy Solar Inverter) Failed to retrieve data from 192.168.0.4, cancelling...
Who is online
Users browsing this forum: No registered users and 0 guests