Search found 12 matches

by Yobby
Monday 07 November 2016 16:47
Forum: Others
Topic: SolarEdge in Latest Beta / Port Number
Replies: 161
Views: 62027

Re: SolarEdge in Latest Beta / Port Number

Just tested it with my 3 phase 5k inverter, it still works.
I'm using the latest beta though.
by Yobby
Tuesday 20 September 2016 19:22
Forum: Utility
Topic: Water meter
Replies: 7
Views: 4051

Re: Water meter

As you see above, I'm running the beta, version 3.5641

and I get this:
Image
by Yobby
Tuesday 20 September 2016 10:44
Forum: Utility
Topic: Water meter
Replies: 7
Views: 4051

Re: Water meter

I still need it. Haven't found a solution. But all this is very new to me, so I don't really understand what kind of virtual meter to create? Setup Hardware Add Dummy Create Virtual Sensors You could just use Custom Sensor in the dropdown. Or Rain, as it has both flow&volume. http://i.imgur.com ...
by Yobby
Wednesday 14 September 2016 14:51
Forum: Utility
Topic: Water meter
Replies: 7
Views: 4051

Re: Water meter

I don't if you still need it, but using a lua-script, a virtual meter and a uservariable it should be possible. When the valve is opened, set the uservariable to the total water amount from the actual Waterflow sensor, and with each update of that sensor, set the value of the virtual meter to the ...
by Yobby
Friday 22 January 2016 16:28
Forum: Others
Topic: SolarEdge in Latest Beta / Port Number
Replies: 161
Views: 62027

Re: SolarEdge in Latest Beta / Port Number

Sorry, my bad.
Change the ? before apikey= in &
by Yobby
Friday 22 January 2016 13:37
Forum: Others
Topic: SolarEdge in Latest Beta / Port Number
Replies: 161
Views: 62027

Re: SolarEdge in Latest Beta / Port Number

Some possible reasons: Did you use quotes when you shouldn't or spaces/tabs before/after As the inverter Serial isn't used in the lua-script, are you sure it's the correct one? Does this work in your browser? (substitute {siteId}, {serial} and {apiKey} with your own values) https://monitoringapi ...
by Yobby
Friday 08 January 2016 8:56
Forum: Others
Topic: SolarEdge in Latest Beta / Port Number
Replies: 161
Views: 62027

Re: SolarEdge in Latest Beta / Port Number

If you have a recent beta of Domoticz, it may be easier to use use SolarEdge via Web API in Hardware. That way there's no need for scripts nor uservariables. Only the SiteID, API Key and Serial number of your inverter, which you can find on the Solaredge monitoring website.
by Yobby
Tuesday 03 November 2015 8:58
Forum: Others
Topic: SolarEdge in Latest Beta / Port Number
Replies: 161
Views: 62027

Re: SolarEdge in Latest Beta / Port Number

In the script you have to use it like this: With brackets, with a fake API: vSeApiKey = 'GHJJYUFTF56FDRFHJJH4HD7F2GFT' -- api-key from SolarEdge {"overview":{"lastUpdateTime":"2015-11-02 15:53:50","lifeTimeData":{"energy":36010.0},"lastYearData":{"energy":35067.156},"lastMonthData":{"energy":11459 ...
by Yobby
Wednesday 03 June 2015 8:52
Forum: Others
Topic: SolarEdge in Latest Beta / Port Number
Replies: 161
Views: 62027

Re: SolarEdge in Latest Beta / Port Number

Changed that and now see data :D but a little bit strange output dayproduction is same as input E That E value is the Lifetime Energy Production in Wh. Dayproduction is calculated automatically by Domoticz by substracting that value at the start of the day from the current value. To get the graphs ...
by Yobby
Tuesday 02 June 2015 8:35
Forum: Others
Topic: SolarEdge in Latest Beta / Port Number
Replies: 161
Views: 62027

Re: SolarEdge in Latest Beta / Port Number

Try changing this line:

Code: Select all

if not vSolarEnergy == nil then
to this

Code: Select all

if vSolarEnergy ~= nil then
by Yobby
Monday 01 June 2015 17:07
Forum: Others
Topic: SolarEdge in Latest Beta / Port Number
Replies: 161
Views: 62027

Re: SolarEdge in Latest Beta / Port Number

Hi Yobby, Can you explain more how to implement in Domoticz because this is a better way as through PVoutput First you need a virtual device to gather the data. If it was working before and you already have a device with SolarEdge data, you may be able to use that instead. goto Setup > Hardware Add ...
by Yobby
Monday 01 June 2015 11:25
Forum: Others
Topic: SolarEdge in Latest Beta / Port Number
Replies: 161
Views: 62027

Re: SolarEdge in Latest Beta / Port Number

A question for those where it works (or worked): How often does it update? It never worked for me, so I made a lua-script to get the data from SolarEdge. It fetches data every 15 minutes, and updates a virtual device in Domoticz with it. This has been running fine since december last year. -- /home ...