Hello,
I am trying to read from my meter using a linux computer and optics sensor. I can successfully read with GXDLMSDirector but using the same parameters with ANSI C++ library i get "SNRMRequest failed 252".
i am reading a hexing meter and the command is
$sudo ./gurux.dlms.client.bim -S /dev/ttyUSB0 -i -a High -P '00 00 00 00 00 00' -t Verbose
The iec handshake was successful but afterwards the "SNRMRequest failed 252" shows up.
I want to supervise a network of Landis+gyr E650 MeterS on a server.
The meters have RJ45 ports for network connections.
My telecom network is based on routers installed in every site.
The meters are connected to routers and then brought to the server over an OSPF based network.
I configured the meters (IP adress, mask and gateway)
When i connect the meter to my laptop, everything is OK and i can ping it.
I have a problem with component Gurux.DLMS.UI.Net. When I try to build solution two errors are shown:
1.Identifier expected :static is a key word
2.Expected class,delegate, enum,interface, or struct
This is all related to file GXDlmsUi.cs and line 9.
using static System.Windows.Forms.Control;
I'm testing the sampleclient (java) you provided for reading a profilegeneric object from GuruxDLMSServerExample in this way :
1) I launch the sample DLMS Server with this configuration :
GXDLMSServerSN_47 SNServer = new GXDLMSServerSN_47();
SNServer.Initialize(4060);
--> In GXDLMSProfileGeneric instance I see that the attribute "captureObjects" is correctly populated with clock and register object :
pg.addCaptureObject(clock, 2, 0);
pg.addCaptureObject(register, 2, 0);
I am using sample java client and server from github(https://github.com/Gurux/gurux.dlms.java). But when I am trying to set values in server I am not able to fetch it for example
At server side I am setting
GXDLMSRegister r = new GXDLMSRegister("1.1.21.25.0.255");
// Set access right. Client can't change Device name.
r.setValue(1);
r.setAccess(2, AccessMode.READ);
r.setUnit(Unit.CURRENT);
getItems().add(r);
Hello every body
I am an electronic engineer student and I am trying to retrieve data from my smart meter (Iskraemeco) and then analyse these data with my raspberry PI and i must use the DLMS protocol.
So here i am, i am searching all the day in forums and in internet how i can start doing this project but i am confusing because i did not found something easy to understand for someone who try to start from the bottom.
So please can anybody enlighten me with steps to follow to understand what i am going to do ?