If you have createDevices = true then Domoticz will create the micro inverter devices for you. At least if you allow creation of new devices in settings page.
vwstepha wrote: ↑Monday 02 January 2023 20:15 Good evening everyone! Best wishes for this New Year!!!!
I want to monitor my Enphase meter
I put the script available on the 1st page (thanks to the author!!) in the events
I created a Dummy and the idx 16 was assigned by Dz.
in the settings, there is the authorization to create new sensors.
I filled in my personal info except "micro inverter". I did not understand what I should put?Code: Select all
-- ============================== -- Your setting here -- ============================== -- Change to reflect location of your wget and remove -- ( comment ) in front of the declaration for your OS -- wgetExecutable = '/usr/bin/wget' -- Linux -- wgetExecutable = 'c:\\"Program files"\\wget.exe' -- Windows: double back slashes where one is in the path local Enphase = { ip = '192.168.1.195', -- IP address of your local enphase hub password = 'ac6k4732', -- Change to your calculated password. See description above on how to get this. dummyHardwareIDX = 16, -- Change to ID of your virtual hardware useProduction = true, productionDeviceName = 'l***l', useInverters = true, inverterDevicePrefix = 'micro inverter: ', -- script use this prefix + serial number of inverter. createDevices = true, -- Should the script create devices if they are not defined yet. -- please note that the counter display will only show a rough estimate -- of the produced energy over the period the device lives in domoticz and the script is active. -- ========================================= -- == No changes required below this line == -- ========================================== user = 'installer', -- I think this is a fixed username inverterDeviceType = 'Electric (instant+Counter)', -- script use this type for inverters productionDeviceType = 'Electric (instant+Counter)', -- script use this type for total production productionAPI = '/api/v1/production', invertersAPI = '/api/v1/production/inverters', }
Do I have to put the serial number of the Micro inverter and therefore create as many scripts as there are micro inverters?
Can you help me?
Thank you